Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/e2e
diff options
context:
space:
mode:
authorJesse Mazzella <ozyx@users.noreply.github.com>2022-09-09 23:29:03 +0300
committerGitHub <noreply@github.com>2022-09-09 23:29:03 +0300
commitc231c2d7cbdd9b868fd837c469643791796739b1 (patch)
tree36c0434d2ee2452f8daa81196944de02383c42b6 /e2e
parent47fb81ff1c7629436bc7418a1494df0914a4cef0 (diff)
[e2e] Fix intermittent visual test timeouts (#5743)
* try fix visual test failure * disable actionTimeout * increase percy loglevel * comment * Remove `@percy/cli` dependency as it may be conflicting * Upgrade `percy/cli` to 1.10.2 * drop percy/cli version down to 1.7.2 * enable timeouts for actions again
Diffstat (limited to 'e2e')
-rw-r--r--e2e/playwright-visual.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/playwright-visual.config.js b/e2e/playwright-visual.config.js
index 417b04cf1..bc2977274 100644
--- a/e2e/playwright-visual.config.js
+++ b/e2e/playwright-visual.config.js
@@ -7,8 +7,8 @@ const config = {
retries: 0, // visual tests should never retry due to snapshot comparison errors
testDir: 'tests/visual',
testMatch: '**/*.visual.spec.js', // only run visual tests
- timeout: 60 * 1000,
- workers: 2, //Limit to 2 for CircleCI Agent
+ timeout: 90 * 1000,
+ workers: 1, //Limit to 1 for CircleCI Agent
webServer: {
command: 'cross-env NODE_ENV=test npm run start',
url: 'http://localhost:8080/#',