add fixmes to e2e tests failing due to regressions

This commit is contained in:
David Tsay 2023-07-20 13:10:29 -07:00
parent e94cf27c9a
commit f48afeb179
2 changed files with 54 additions and 47 deletions

View File

@ -28,10 +28,10 @@ const { createDomainObjectWithDefaults, createNotification } = require('../../ap
const { test, expect } = require('../../pluginFixtures'); const { test, expect } = require('../../pluginFixtures');
test.describe('Notifications List', () => { test.describe('Notifications List', () => {
test('Notifications can be dismissed individually', async ({ page }) => { test.fixme('Notifications can be dismissed individually', async ({ page }) => {
test.info().annotations.push({ test.info().annotations.push({
type: 'issue', type: 'issue',
description: 'https://github.com/nasa/openmct/issues/6122' description: 'https://github.com/nasa/openmct/issues/6820'
}); });
// Go to baseURL // Go to baseURL

View File

@ -59,9 +59,14 @@ test.describe('Recent Objects', () => {
await page.mouse.move(0, 100); await page.mouse.move(0, 100);
await page.mouse.up(); await page.mouse.up();
}); });
test('Navigated objects show up in recents, object renames and deletions are reflected', async ({ test.fixme(
page 'Navigated objects show up in recents, object renames and deletions are reflected',
}) => { async ({ page }) => {
test.info().annotations.push({
type: 'issue',
description: 'https://github.com/nasa/openmct/issues/6818'
});
// Verify that both created objects appear in the list and are in the correct order // Verify that both created objects appear in the list and are in the correct order
await assertInitialRecentObjectsListState(); await assertInitialRecentObjectsListState();
@ -105,7 +110,9 @@ test.describe('Recent Objects', () => {
// Verify that the folder and clock are no longer in the recent objects list // Verify that the folder and clock are no longer in the recent objects list
await expect(recentObjectsList.getByRole('listitem', { name: folderA.name })).toBeHidden(); await expect(recentObjectsList.getByRole('listitem', { name: folderA.name })).toBeHidden();
await expect(recentObjectsList.getByRole('listitem', { name: clock.name })).toBeHidden(); await expect(recentObjectsList.getByRole('listitem', { name: clock.name })).toBeHidden();
}); }
);
test('Clicking on an object in the path of a recent object navigates to the object', async ({ test('Clicking on an object in the path of a recent object navigates to the object', async ({
page, page,
openmctConfig openmctConfig