mocha - 2 (2000ms).
- () , --timeout xxxx.
- , this.timeout( xxxx ) - , arrow functions - ( xxxx - , 20000, ).
it('My test', function(){
this.timeout(5000);
});
- ( describe):
describe("My suite", function(){
this.timeout(5000);
it( "Test 1", function(){
...
});
it( "Test 2", function(){
...
});
});
before, beforeEach, after, afterEach.
: https://mochajs.org/#timeouts
, 2 , , - , .
, , , , , .