mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-05-07 19:26:09 +02:00
updating the schema save pre hook so that it checks for a modified version of the password field before it tries to re-calculate the new password to save for the user model
This commit is contained in:
@@ -67,6 +67,16 @@ describe('User Model Unit Tests:', function() {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should confirm that saving user model doesnt change the password', function(done) {
|
||||
user.firstName = 'test';
|
||||
var passwordBefore = user.password;
|
||||
return user.save(function(err) {
|
||||
var passwordAfter = user.password
|
||||
passwordBefore.should.equal(passwordAfter);
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
after(function(done) {
|
||||
|
||||
Reference in New Issue
Block a user