From c4026054b993294ad958cca29cf06e420e84a1b5 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 14 Oct 2020 19:21:43 -0700 Subject: [PATCH] bump the timeout a bit more --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index eb689cf..e2df120 100644 --- a/test/test.js +++ b/test/test.js @@ -137,7 +137,7 @@ describe('Application life cycle test', function () { it('install app', function (done) { execSync('cloudron install --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); - setTimeout(done, 10000); // takes a bit to create root user in background + setTimeout(done, 20000); // takes a bit to create root user in background }); it('can get app information', getAppInfo);