hookshot/spec/setup-jest.ts
Will Hunt 283375c6c1
Retry E2E tests on failure if running in CI. (#995)
* Retry E2E tests in CI

* newsfile
2024-11-29 09:32:18 +00:00

2 lines
165 B
TypeScript

// In CI, the network creation for the homerunner containers can race (https://github.com/matrix-org/complement/issues/720).
jest.retryTimes(process.env.CI ? 3 : 1);