最佳答案
我在 before()
中有一个回调函数,用于清理数据库。
before()
中的所有内容是否保证在 it()
开始之前完成?
before(function(){
db.collection('user').remove({}, function(res){}); // is it guaranteed to finish before it()?
});
it('test spec', function(done){
// do the test
});
after(function(){
});