From ad9b23bfe95b9a632a5e192e0863999b7321ee02 Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Thu, 18 Feb 2021 16:28:39 +0530 Subject: [PATCH] increase timeout for spectron tests from default 10s to 30s, as sometimes it runs out of time while starting the app --- ava-spectron.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ava-spectron.config.js b/ava-spectron.config.js index cdd8e22e..e7298452 100644 --- a/ava-spectron.config.js +++ b/ava-spectron.config.js @@ -5,5 +5,6 @@ export default { compileAsTests: ['**/testUtils/**/*'] }, extensions: ['ts'], - require: ['ts-node/register/transpile-only'] + require: ['ts-node/register/transpile-only'], + timeout: '30s' };