From a4a3e82b10676f8808b32da9c072d26a55c6fcc7 Mon Sep 17 00:00:00 2001 From: BryceLTaylor <brycet@media.mit.edu> Date: Tue, 18 Sep 2018 16:31:34 -0400 Subject: [PATCH] Increase timeout in integration test for loading project with url --- test/integration/project-loading.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/project-loading.test.js b/test/integration/project-loading.test.js index 62199cdcb..f851188c4 100644 --- a/test/integration/project-loading.test.js +++ b/test/integration/project-loading.test.js @@ -72,7 +72,7 @@ describe('Loading scratch gui', () => { const projectId = '96708228'; await loadUri(`${uri}#${projectId}`); await clickXpath('//button[@title="Try It"]'); - await new Promise(resolve => setTimeout(resolve, 2000)); + await new Promise(resolve => setTimeout(resolve, 3000)); await clickXpath('//img[@title="Go"]'); await new Promise(resolve => setTimeout(resolve, 2000)); await clickXpath('//img[@title="Stop"]'); -- GitLab