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

Commit 08e4e920 by sdepold

err is null if everything was ok in complete

1 parent b3d63fd9
Showing with 8 additions and 0 deletions
...@@ -59,6 +59,14 @@ dialects.forEach(function(dialect) { ...@@ -59,6 +59,14 @@ dialects.forEach(function(dialect) {
done() done()
}) })
}) })
it("gets triggered if everything was ok", function(done) {
this.User.count().complete(function(err, result) {
expect(err).toBeNull()
expect(result).toBeDefined()
done()
})
})
}) })
}) })
}) })
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!