15 lines
479 B
JavaScript
15 lines
479 B
JavaScript
/* Setup for unit test environment */
|
|
import 'helpers/shared_test_setup';
|
|
import { initializeTestTimeout } from 'helpers/timeout';
|
|
|
|
jest.mock('~/lib/utils/axios_utils', () => jest.requireActual('helpers/mocks/axios_utils'));
|
|
|
|
initializeTestTimeout(process.env.CI ? 6000 : 500);
|
|
|
|
afterEach(() =>
|
|
// give Promises a bit more time so they fail the right test
|
|
new Promise(setImmediate).then(() => {
|
|
// wait for pending setTimeout()s
|
|
jest.runOnlyPendingTimers();
|
|
}),
|
|
);
|