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

Commit 1387f143 by Matheus Bratfisch

Not executing tests for multiple 1:M (hasMany) on MSSQL since the created constr…

…aints are not supported. #2736
1 parent deca3c5b
Showing with 5 additions and 1 deletions
......@@ -6,7 +6,8 @@ var chai = require('chai')
, DataTypes = require(__dirname + '/../lib/data-types')
, _ = require('lodash')
, Sequelize = Support.Sequelize
, sinon = require('sinon');
, sinon = require('sinon')
, dialect = Support.getTestDialect();
chai.config.includeStack = true;
......@@ -5332,7 +5333,9 @@ describe(Support.getTestDialectTeaser('Hooks'), function() {
});
});
if (dialect !== "mssql") {
describe('multiple 1:M', function () {
describe('cascade', function() {
beforeEach(function() {
var self = this;
......@@ -5634,6 +5637,7 @@ describe(Support.getTestDialectTeaser('Hooks'), function() {
});
});
});
}
});
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!