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

Commit 4bbf4758 by Ruben Bridgewater

Insert a done back into the tests for the time being

1 parent 0b47387c
Showing with 2 additions and 32 deletions
...@@ -924,38 +924,7 @@ describe(Support.getTestDialectTeaser('Model'), function() { ...@@ -924,38 +924,7 @@ describe(Support.getTestDialectTeaser('Model'), function() {
}); });
}); });
it('can omit autoincremental columns', function(done) {
it('can omit autoincremental columns', function() {
var self = this var self = this
, data = { title: 'Iliad' } , data = { title: 'Iliad' }
, dataTypes = [Sequelize.INTEGER, Sequelize.BIGINT] , dataTypes = [Sequelize.INTEGER, Sequelize.BIGINT]
...@@ -984,6 +953,7 @@ describe(Support.getTestDialectTeaser('Model'), function() { ...@@ -984,6 +953,7 @@ describe(Support.getTestDialectTeaser('Model'), function() {
expect(book.author).to.equal(data.author); expect(book.author).to.equal(data.author);
expect(books[index].rawAttributes.id.type instanceof dataTypes[index]).to.be.ok; expect(books[index].rawAttributes.id.type instanceof dataTypes[index]).to.be.ok;
}); });
done();
}); });
}); });
}); });
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!