mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 13:43:09 +00:00
22 lines
426 B
JavaScript
22 lines
426 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
extends: ['plugin:playwright/playwright-test'],
|
|
rules: {
|
|
'playwright/max-nested-describe': ['error', { max: 1 }]
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/*.visual.spec.js'],
|
|
rules: {
|
|
'playwright/expect-expect': 'off'
|
|
}
|
|
},
|
|
{
|
|
files: ['**/*.perf.spec.js'],
|
|
rules: {
|
|
'playwright/expect-expect': 'off'
|
|
}
|
|
}
|
|
]
|
|
};
|