2
Hàm async trong mocha before () vẫn hoàn thành trước nó () spec?
Tôi có một chức năng gọi lại before()để làm sạch cơ sở dữ liệu. Mọi thứ có before()được đảm bảo hoàn thành trước khi it()bắt đầu không? 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(){ });