From c534753c2c75d601836f20219f30ad89503c43b9 Mon Sep 17 00:00:00 2001 From: Clement Michaud Date: Sat, 2 Mar 2019 17:33:30 +0100 Subject: [PATCH] Increase timeout to prepare environment to 30 seconds. --- test/helpers/context/WithEnvironment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/context/WithEnvironment.ts b/test/helpers/context/WithEnvironment.ts index 5019ba5f..06f72cd4 100644 --- a/test/helpers/context/WithEnvironment.ts +++ b/test/helpers/context/WithEnvironment.ts @@ -5,7 +5,7 @@ export default function WithAutheliaRunning(suitePath: string, waitTimeout: numb var { setup, teardown } = require(`../../suites/${suite}/environment`); before(async function() { - this.timeout(10000); + this.timeout(30000); console.log('Preparing environment...'); await setup();