increase timeout for spectron tests

from default 10s to 30s, as sometimes it runs out of time while starting the app
This commit is contained in:
Labhansh Agrawal 2021-02-18 16:28:39 +05:30 committed by Benjamin Staneck
parent 812ca44ffb
commit ad9b23bfe9

View file

@ -5,5 +5,6 @@ export default {
compileAsTests: ['**/testUtils/**/*']
},
extensions: ['ts'],
require: ['ts-node/register/transpile-only']
require: ['ts-node/register/transpile-only'],
timeout: '30s'
};