Append error to the message

This commit is contained in:
Raymond Feng 2013-11-06 14:51:20 -08:00
parent 7635312c02
commit fb2624bc6c
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ describe('migrations', function() {
}
UserData.create({email: 'test@example.com'}, function(err, user) {
assert.ok(!err, 'Could not create user');
assert.ok(!err, 'Could not create user: ' + err);
userExists(function(yep) {
assert.ok(yep, 'User does not exist');
});