2016-06-24 59 views

回答

0

測試語法在比較簡單的mocha

實際使用gulp-mocha時保持不變gulp-mocha是隻是一個包裝,以幫助您通過gulp

+0

我收到一個錯誤,說當按照它在網站上描述的方式嘗試它時,函數'run'沒有被定義。 – DevNebulae

+0

你能否用你的'gulpfile'代碼和測試文件的代碼更新你的文章,哪裏出錯? – Stanislav

+0

這不是代碼破壞,它只是一個關於如何實現它的普遍問題。 – DevNebulae

0

運行測試套件來解決這個問題的理想方法是做一個異步測試。

describe('StackOverflowExample', function() { 
    it('Demonstrates how to create a test with delay', async function(done) { 
     setTimeout(() => { 
      //Your code here 
      done(); 
     }, 250); //Set the delay to your liking 
    }); 
});