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

Commit 9dbd0f67 by Sascha Depold

debugging

1 parent b44da417
Showing with 4 additions and 1 deletions
...@@ -36,7 +36,10 @@ describe("[" + dialect.toUpperCase() + "] Sequelize", function() { ...@@ -36,7 +36,10 @@ describe("[" + dialect.toUpperCase() + "] Sequelize", function() {
this.insertQuery = "INSERT INTO " + this.User.tableName + " (username) VALUES ('john')" this.insertQuery = "INSERT INTO " + this.User.tableName + " (username) VALUES ('john')"
this.User.sync().success(done) this.User.sync().success(done).error(function(err) {
console(err)
done()
})
}) })
it('executes a query the internal way', function(done) { it('executes a query the internal way', function(done) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!