Skip to content

Commit 0a517b4

Browse files
committed
feat: increase jest timeout
1 parent 4eec54f commit 0a517b4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: jest.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ module.exports = {
44
moduleDirectories: [
55
'node_modules',
66
'<rootDir>',
7-
]
8-
};
7+
],
8+
setupFilesAfterEnv: ['./jest.setup.js']
9+
};

Diff for: jest.setup.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jest.setTimeout(30000);

0 commit comments

Comments
 (0)