DackRen
1/15/2019 - 3:11 PM

nodejs chai async test timeout

Error: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test

describe('doAsync', () => {
  it('increase timeout', async () => {
     await someAsyncJob();
  }).timeout(60000);
});