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 edfb4c4 commit d25b7b1Copy full SHA for d25b7b1
src/__tests__/render-basics.js
@@ -3,6 +3,17 @@ const isRunning = require('is-running')
3
const {render} = require('../pure')
4
const {fireEvent} = require('../events')
5
const {waitFor} = require("../wait-for");
6
+const {getConfig, configure} = require("../config");
7
+
8
+let originalConfig
9
+beforeEach(() => {
10
+ originalConfig = getConfig()
11
+ configure({asyncUtilTimeout: 15000})
12
+})
13
14
+afterEach(() => {
15
+ configure(originalConfig)
16
17
18
test('Should handle stderr outputs with rejection', async () => {
19
await expect(() =>
0 commit comments