setupTest.ts 456 B

123456789
  1. // Simulate Jest for waitFor()
  2. // see https://github.com/testing-library/dom-testing-library/blob/0ce0c7054dfa64d1cd65053790246aed151bda9d/src/helpers.ts#L5
  3. // and http"s://github.com/testing-library/dom-testing-library/blob/0ce0c7054dfa64d1cd65053790246aed151bda9d/src/wait-for.js#L53
  4. // eslint-disable-next-line @typescript-eslint/ban-ts-comment
  5. // @ts-ignore
  6. global.jest = {
  7. advanceTimersByTime: (ms: number) => vi.advanceTimersByTime(ms),
  8. } as any;