Skip to content

Commit

Permalink
Update to demonstrate unit test is actually failing due to incorrect …
Browse files Browse the repository at this point in the history
…values of invalidCredentials

 - strongloop#944
  • Loading branch information
greaterweb committed Jan 5, 2015
1 parent 2368eb5 commit 64f0e61
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/user.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@ describe('User', function() {
.expect(401)
.send(invalidCredentials)
.end(function(err, res) {
if (err) {
return done(err);
}
done();
});
});
Expand Down

0 comments on commit 64f0e61

Please sign in to comment.