2
mocha before()の非同期関数は常にit()仕様の前に終了していますか?
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(){ });