async callback was not invoked within the 5000ms timeout specified by jest.settimeout.timeout code example

Example 1: : Timeout - Async callback was not invoked within the 5000 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within the 5000 ms timeout specified by jest.setTimeout.Error:

// add this in your test

beforeEach(() => {
  jest.setTimeout(8000)
})

afterAll(() => {
 jest.clearAllTimers()
})

Example 2: jest Async callback was not invoked within the 5000ms timeout specified by jest

// jest.config.js
module.exports = {
  // setupTestFrameworkScriptFile has been deprecated in
  // favor of setupFilesAfterEnv in jest 24
  setupFilesAfterEnv: ['./jest.setup.js']
}

// jest.setup.js
jest.setTimeout(30000)