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

Commit 6343ebb9 by Sascha Depold

fixed not existing toInclude helper in jasmine spec

1 parent 5fa778ea
Showing with 1 additions and 1 deletions
...@@ -75,7 +75,7 @@ describe('Sequelize', function() { ...@@ -75,7 +75,7 @@ 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).toInclude('photos') expect(tableNames.indexOf('photos') !== -1).toBeTruthy()
done done
}) })
}) })
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!