Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Set testTimeout for jest run
Browse files Browse the repository at this point in the history
  • Loading branch information
dov118 committed Jul 22, 2021
1 parent 71e1df4 commit dc4c0f5
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
module.exports = {
transform: {
'^.+\\.ts?$': 'ts-jest'
},
testEnvironment: 'node',
testRegex: '/tests/.*\\.(test|spec)?\\.(ts|tsx|js)$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
transform: {
'^.+\\.ts?$': 'ts-jest',
},
testEnvironment: 'node',
testRegex: '/tests/.*\\.(test|spec)?\\.(ts|tsx|js)$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
testTimeout: 20000,
};

0 comments on commit dc4c0f5

Please sign in to comment.