How to set timeout on before hook in mocha?

后端 未结 4 1743
一生所求
一生所求 2021-01-03 17:32

I want to set timeout value on before hook in mocha test cases. I know I can do that by adding -t 10000 on the command line of mocha but this will change every

4条回答
  •  自闭症患者
    2021-01-03 18:27

    You need to set a timeout in your describe block rather than in the hook if you want it to affect all the tests in the describe. However, you need to use a "regular" function as the callback to describe rather than an arrow function:

    describe('test', function () {
      this.timeout(10000);
    
      before(...);
    
      it(...);
    });
    

    In all places where you want to use this in a callback you pass to Mocha you cannot use an arrow function. You must use a "regular" function which has its own this value that can be set by Mocha. If you use an arrow function, the value of this won't be what Mocha wants it to be and your code will fail.

    You could set a different timeout for your before hook but there are two things to consider:

    1. Here too you'd need to use a "regular" function rather than an arrow function so:

      before(function (done) { 
        this.timeout(10000);
      
    2. This would set a timeout only for the before hook and would not affect your tests.

提交回复
热议问题