fix a user test

v1.18.x
barisusakli 10 years ago
parent 7f72d80292
commit d61ac000a8

@ -55,12 +55,12 @@ describe('User', function() {
}); });
}); });
it('should have a valid email, if using an email', function() { it('should have a valid email, if using an email', function(done) {
assert.throws( User.create({username: userData.username, password: userData.password, email: 'fakeMail'},function(err) {
User.create({username: userData.username, password: userData.password, email: 'fakeMail'},function(){}), assert(err);
Error, assert.equal(err.message, '[[error:invalid-email]]');
'does not validate email' done();
); });
}); });
}); });

Loading…
Cancel
Save