mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
6c71fa01f5
* [e2e] Remove unnecessary step with force click * `test.skip()` -> `test.fixme()` * Bypass `no-wait-for-timeout` rule for visual tests * Fail lint step if warnings > 0 * Set default value for `imageUrl` - Resolves `vue/require-default-prop` warning * Disable eslint rule `you-dont-need-lodash-underscore/get` - Disable the rule for now as the implementation they suggest doesn't match lodash `_.get()` functionality, and fails a bunch of our tests. See https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore/issues/311 and https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore/issues/294 * Disable `no-wait-for-timeout` warning for `visual` folder * Add rule exception and comments in logPlot test - Add exception and FIXME for timeout - Add comment on fixme test to discourage community contribution * clean up tests - remove unnecessary awaits - update locators to use data-testid where possible - remove unnecessary wait * Wait for image count condition instead of timeout * code review comments: use expect.poll() * readability * .fixme() + comment instead of .skip() * disable `.skip()` warning for memleak test suite
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
"extends": ["plugin:playwright/playwright-test"],
|
|
"overrides": [
|
|
{
|
|
"files": ["tests/visual/*.spec.js"],
|
|
"rules": {
|
|
"playwright/no-wait-for-timeout": "off"
|
|
}
|
|
}
|
|
]
|
|
};
|