mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import { jest } from '@jest/globals';
|
|
|
|
import 'jest-extended';
|
|
import 'jest-extended/all';
|
|
|
|
if (process.env.CI === 'true') {
|
|
// Tests running in the CI runners tend to be more flaky.
|
|
jest.retryTimes(3);
|
|
}
|