increase load delay for modules tests

This commit is contained in:
Karsten Hassel 2021-10-22 22:49:10 +02:00
parent 3a0a02d3ba
commit b1a46b365b
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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();