UNPKG

201 BJavaScriptView Raw
1jest.setTimeout(9 * 60 * 1000); // 10 min
2global.cleanupFunctions = [];
3
4afterAll(() => {
5 while (global.cleanupFunctions.length > 0) {
6 const fn = global.cleanupFunctions.pop();
7 fn();
8 }
9});