We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2db766 commit 807355dCopy full SHA for 807355d
2 files changed
jest.config.js
@@ -38,4 +38,5 @@ module.exports = {
38
],
39
},
40
moduleNameMapper,
41
+ testTimeout: 60000,
42
};
test-setup.js
@@ -39,3 +39,7 @@ global.Request = Request;
/** Mock scrollTo as it is not supported by JSDOM */
global.scrollTo = jest.fn();
+
43
+const { configure: configureReact } = require('@testing-library/react');
44
45
+configureReact({ asyncUtilTimeout: 15000 });
0 commit comments