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
diff options
context:
space:
mode:
Diffstat (limited to 'e2e/.eslintrc.js')
-rw-r--r--e2e/.eslintrc.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/e2e/.eslintrc.js b/e2e/.eslintrc.js
index 78d37c29a..3388deb35 100644
--- a/e2e/.eslintrc.js
+++ b/e2e/.eslintrc.js
@@ -1,4 +1,12 @@
/* eslint-disable no-undef */
module.exports = {
- "extends": ["plugin:playwright/playwright-test"]
+ "extends": ["plugin:playwright/playwright-test"],
+ "overrides": [
+ {
+ "files": ["tests/visual/*.spec.js"],
+ "rules": {
+ "playwright/no-wait-for-timeout": "off"
+ }
+ }
+ ]
};