2018-12-10 07:42:25 -05:00
|
|
|
const testTimeoutInMs = 300;
|
2018-09-06 13:36:04 -04:00
|
|
|
jest.setTimeout(testTimeoutInMs);
|
|
|
|
|
|
|
|
let testStartTime;
|
|
|
|
|
|
|
|
// https://github.com/facebook/jest/issues/6947
|
|
|
|
beforeEach(() => {
|
|
|
|
testStartTime = Date.now();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
const elapsedTimeInMs = Date.now() - testStartTime;
|
|
|
|
if (elapsedTimeInMs > testTimeoutInMs) {
|
|
|
|
throw new Error(`Test took too long (${elapsedTimeInMs}ms > ${testTimeoutInMs}ms)!`);
|
|
|
|
}
|
|
|
|
});
|