Fix test timeout for github actions

Signed-off-by: Paul Merlin <paul@gradle.com>
This commit is contained in:
Paul Merlin 2020-01-06 11:41:12 +01:00
parent 9e2c9e95db
commit 82c97567c8
2 changed files with 3 additions and 1 deletions

View file

@ -7,5 +7,6 @@ module.exports = {
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
verbose: true,
setupFilesAfterEnv: ['./jest.setup.js']
}

1
jest.setup.js Normal file
View file

@ -0,0 +1 @@
jest.setTimeout(10000)