mirror of
https://github.com/nasa/openmct.git
synced 2025-06-12 20:28:14 +00:00
Audit test.fixme
s (#5711)
- Replace `test.fixme` with the `@unstable` annotation for tests with contents - Replace `test.fixme` with `test.skip` for conditionally skipped tests
This commit is contained in:
@ -28,9 +28,10 @@ const { test, expect } = require('../../../../pluginFixtures');
|
||||
|
||||
test.describe('Handle missing object for plots', () => {
|
||||
test('Displays empty div for missing stacked plot item @unstable', async ({ page, browserName, openmctConfig }) => {
|
||||
const { myItemsFolderName } = openmctConfig;
|
||||
// eslint-disable-next-line playwright/no-skipped-test
|
||||
test.skip(browserName === 'firefox', 'Firefox failing due to console events being missed');
|
||||
|
||||
test.fixme(browserName === 'firefox', 'Firefox failing due to console events being missed');
|
||||
const { myItemsFolderName } = openmctConfig;
|
||||
const errorLogs = [];
|
||||
|
||||
page.on("console", (message) => {
|
||||
|
Reference in New Issue
Block a user