mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-07 23:19:21 +01:00
Wait for async saving and removing
This commit is contained in:
@@ -57,8 +57,8 @@ describe('Article Model Unit Tests:', function() {
|
||||
});
|
||||
|
||||
afterEach(function(done) {
|
||||
Article.remove().exec();
|
||||
User.remove().exec();
|
||||
done();
|
||||
Article.remove().exec(function() {
|
||||
User.remove().exec(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -270,8 +270,8 @@ describe('Article CRUD tests', function() {
|
||||
});
|
||||
|
||||
afterEach(function(done) {
|
||||
User.remove().exec();
|
||||
Article.remove().exec();
|
||||
done();
|
||||
User.remove().exec(function() {
|
||||
Article.remove().exec(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -52,10 +52,11 @@ describe('User Model Unit Tests:', function() {
|
||||
});
|
||||
|
||||
it('should fail to save an existing user again', function(done) {
|
||||
user.save();
|
||||
return user2.save(function(err) {
|
||||
should.exist(err);
|
||||
done();
|
||||
user.save(function() {
|
||||
user2.save(function(err) {
|
||||
should.exist(err);
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -69,7 +70,6 @@ describe('User Model Unit Tests:', function() {
|
||||
});
|
||||
|
||||
after(function(done) {
|
||||
User.remove().exec();
|
||||
done();
|
||||
User.remove().exec(done);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user