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

Commit c2e1a88a by Björn Dahlgren

Fixed incorrect expect test

1 parent d44014ec
Showing with 1 additions and 1 deletions
...@@ -201,7 +201,7 @@ describe(Support.getTestDialectTeaser("Model"), function () { ...@@ -201,7 +201,7 @@ describe(Support.getTestDialectTeaser("Model"), function () {
users.forEach(function (user) { users.forEach(function (user) {
expect(user.get('name')).to.be.ok; expect(user.get('name')).to.be.ok;
expect(user.get('tasks')[0].get('title')).to.equal('DoDat'); expect(user.get('tasks')[0].get('title')).to.equal('DoDat');
expect(user.get('tasks')[0].get('comments')).to.be; expect(user.get('tasks')[0].get('comments')).to.be.ok;
}); });
}); });
}); });
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!