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

Commit 9f3d170d by Jan Aagaard Meier

fix unrelated jasmine/sequelize tes

1 parent 36662b1e
Showing with 2 additions and 2 deletions
...@@ -75,8 +75,8 @@ describe('Sequelize', function() { ...@@ -75,8 +75,8 @@ describe('Sequelize', function() {
Photo.sync({ force: true }).success(function() { Photo.sync({ force: true }).success(function() {
sequelize.getQueryInterface().showAllTables().success(function(tableNames) { sequelize.getQueryInterface().showAllTables().success(function(tableNames) {
expect(tableNames.indexOf('photos') !== -1).toBeTruthy() expect(tableNames).toContain('photos')
done done()
}) })
}) })
}) })
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!