mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
"extends": ["plugin:playwright/playwright-test"],
|
|
"rules": {
|
|
"playwright/max-nested-describe": ["error", { "max": 1 }]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["tests/visual/*.spec.js"],
|
|
"rules": {
|
|
"playwright/no-wait-for-timeout": "off"
|
|
}
|
|
}
|
|
]
|
|
};
|