不要怂,就是干,撸起袖子干!

Commit 5497f35a by Sushant Committed by GitHub

Chores (#6631)

* fix import test removed watchr

* updated packages
1 parent afab2a48
Showing with 11 additions and 17 deletions
...@@ -56,31 +56,30 @@ ...@@ -56,31 +56,30 @@
}, },
"devDependencies": { "devDependencies": {
"chai": "^3.5.0", "chai": "^3.5.0",
"chai-as-promised": "^5.1.0", "chai-as-promised": "^5.3.0",
"chai-datetime": "^1.4.0", "chai-datetime": "^1.4.1",
"chai-spies": "^0.7.0", "chai-spies": "^0.7.1",
"commander": "^2.6.0", "commander": "^2.9.0",
"continuation-local-storage": "^3.1.4", "continuation-local-storage": "^3.2.0",
"cross-env": "^2.0.1", "cross-env": "^2.0.1",
"dox": "~0.9.0", "dox": "~0.9.0",
"eslint": "^3.4.0", "eslint": "^3.6.0",
"git": "^0.1.5", "git": "^0.1.5",
"hints": "^1.1.0", "hints": "^1.1.0",
"istanbul": "^0.4.5", "istanbul": "^0.4.5",
"jshint": "^2.9.3", "jshint": "^2.9.3",
"lcov-result-merger": "^1.2.0", "lcov-result-merger": "^1.2.0",
"mocha": "^3.0.2", "mocha": "^3.0.2",
"mysql2": "^1.0.0-rc.10", "mysql2": "^1.1.0",
"pg": "^6.0.4", "pg": "^6.1.0",
"pg-hstore": "^2.3.1", "pg-hstore": "^2.3.2",
"pg-native": "^1.8.0", "pg-native": "^1.8.0",
"pg-types": "^1.11.0", "pg-types": "^1.11.0",
"rimraf": "^2.5.4", "rimraf": "^2.5.4",
"sinon": "^1.17.4", "sinon": "^1.17.6",
"sinon-chai": "^2.8.0", "sinon-chai": "^2.8.0",
"sqlite3": "^3.1.4", "sqlite3": "^3.1.4",
"tedious": "^1.13.2", "tedious": "^1.14.0"
"watchr": "~2.6.0"
}, },
"keywords": [ "keywords": [
"mysql", "mysql",
......
...@@ -14,7 +14,6 @@ var chai = require('chai') ...@@ -14,7 +14,6 @@ var chai = require('chai')
, moment = require('moment') , moment = require('moment')
, Transaction = require(__dirname + '/../../lib/transaction') , Transaction = require(__dirname + '/../../lib/transaction')
, sinon = require('sinon') , sinon = require('sinon')
, fs = require('fs')
, semver = require('semver') , semver = require('semver')
, current = Support.sequelize; , current = Support.sequelize;
...@@ -1182,10 +1181,6 @@ describe(Support.getTestDialectTeaser('Sequelize'), function() { ...@@ -1182,10 +1181,6 @@ describe(Support.getTestDialectTeaser('Sequelize'), function() {
expect(Project).to.exist; expect(Project).to.exist;
}); });
after(function(){
fs.unlink(__dirname + '/assets/es6project.js');
});
it('imports a dao definition from a function', function() { it('imports a dao definition from a function', function() {
var Project = this.sequelize.import('Project', function(sequelize, DataTypes) { var Project = this.sequelize.import('Project', function(sequelize, DataTypes) {
return sequelize.define('Project' + parseInt(Math.random() * 9999999999999999), { return sequelize.define('Project' + parseInt(Math.random() * 9999999999999999), {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!