diff --git a/tests/e2e/modules_display_spec.js b/tests/e2e/modules_display_spec.js index 4042e810..4499097d 100644 --- a/tests/e2e/modules_display_spec.js +++ b/tests/e2e/modules_display_spec.js @@ -3,7 +3,7 @@ const helpers = require("./global-setup"); describe("Display of modules", function () { beforeAll(function (done) { helpers.startApplication("tests/configs/modules/display.js"); - helpers.getDocument(done); + helpers.getDocument(done, 3000); }); afterAll(function () { helpers.stopApplication(); diff --git a/tests/e2e/modules_position_spec.js b/tests/e2e/modules_position_spec.js index 79b9b96f..2989bff9 100644 --- a/tests/e2e/modules_position_spec.js +++ b/tests/e2e/modules_position_spec.js @@ -3,7 +3,7 @@ const helpers = require("./global-setup"); describe("Position of modules", function () { beforeAll(function (done) { helpers.startApplication("tests/configs/modules/positions.js"); - helpers.getDocument(done, 1000); + helpers.getDocument(done, 3000); }); afterAll(function () { helpers.stopApplication();