From d61ac000a8ba1ed3e9dd6b5e4cf8cc354392e2e5 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Mon, 19 Oct 2015 11:45:07 -0400 Subject: [PATCH] fix a user test --- tests/user.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/user.js b/tests/user.js index 1a4a402185..f9423a62aa 100644 --- a/tests/user.js +++ b/tests/user.js @@ -55,12 +55,12 @@ describe('User', function() { }); }); - it('should have a valid email, if using an email', function() { - assert.throws( - User.create({username: userData.username, password: userData.password, email: 'fakeMail'},function(){}), - Error, - 'does not validate email' - ); + it('should have a valid email, if using an email', function(done) { + User.create({username: userData.username, password: userData.password, email: 'fakeMail'},function(err) { + assert(err); + assert.equal(err.message, '[[error:invalid-email]]'); + done(); + }); }); });