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:
authorJohn Hill <john.c.hill@nasa.gov>2022-07-15 18:58:03 +0300
committerGitHub <noreply@github.com>2022-07-15 18:58:03 +0300
commit97f5528dfc681cf3ca71d157adfe60463b5afb08 (patch)
tree32cbc46cc8f124155a9e1c9733f03b702af4dc04 /e2e
parent0e1cc5dc303117dc3e4a62fcd13191b8a8479644 (diff)
Last of the post-2.0.6 band-aid removal (#5512)
* back out changes * Ensure that coverage is generated in all tests
Diffstat (limited to 'e2e')
-rw-r--r--e2e/tests/visual/addInit.visual.spec.js2
-rw-r--r--e2e/tests/visual/controlledClock.visual.spec.js3
-rw-r--r--e2e/tests/visual/search.visual.spec.js3
3 files changed, 5 insertions, 3 deletions
diff --git a/e2e/tests/visual/addInit.visual.spec.js b/e2e/tests/visual/addInit.visual.spec.js
index c7f142c24..811d000a8 100644
--- a/e2e/tests/visual/addInit.visual.spec.js
+++ b/e2e/tests/visual/addInit.visual.spec.js
@@ -31,7 +31,7 @@ to "fail" on assertions. Instead, they should be used to detect changes between
Note: Larger testsuite sizes are OK due to the setup time associated with these tests.
*/
-const { test } = require('@playwright/test');
+const { test } = require('../../fixtures.js');
const percySnapshot = require('@percy/playwright');
const path = require('path');
const sinon = require('sinon');
diff --git a/e2e/tests/visual/controlledClock.visual.spec.js b/e2e/tests/visual/controlledClock.visual.spec.js
index 7eb7f64c8..a2ef86b02 100644
--- a/e2e/tests/visual/controlledClock.visual.spec.js
+++ b/e2e/tests/visual/controlledClock.visual.spec.js
@@ -32,7 +32,8 @@ to "fail" on assertions. Instead, they should be used to detect changes between
Note: Larger testsuite sizes are OK due to the setup time associated with these tests.
*/
-const { test, expect } = require('@playwright/test');
+const { test } = require('../../fixtures.js');
+const { expect } = require('@playwright/test');
const percySnapshot = require('@percy/playwright');
const path = require('path');
const sinon = require('sinon');
diff --git a/e2e/tests/visual/search.visual.spec.js b/e2e/tests/visual/search.visual.spec.js
index 654a336dd..976ed4b6f 100644
--- a/e2e/tests/visual/search.visual.spec.js
+++ b/e2e/tests/visual/search.visual.spec.js
@@ -24,7 +24,8 @@
This test suite is dedicated to tests which verify search functionality.
*/
-const { test, expect } = require('@playwright/test');
+const { test } = require('../../fixtures.js');
+const { expect } = require('@playwright/test');
const percySnapshot = require('@percy/playwright');
/**