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 test cases timeout value. I want to find a way to change the timeout programmatically below is my code:
describe('test ', () => {
before((done) => {
this.timeout(10000);
...
it will complain about the line this.timeout(1000)
that timeout
is not defined. How to set the timeout on before hook.