mirror of
https://github.com/nasa/openmct.git
synced 2025-05-09 20:12:50 +00:00
Update with CRUD Operation (#4930)
Co-authored-by: unlikelyzero <jchill2@gmail.com>
This commit is contained in:
parent
ee9e47f487
commit
dae446808e
@ -26,8 +26,8 @@ This test suite is dedicated to tests which verify the basic operations surround
|
|||||||
|
|
||||||
const { test, expect } = require('@playwright/test');
|
const { test, expect } = require('@playwright/test');
|
||||||
|
|
||||||
test.describe('condition set', () => {
|
test.describe('Condition Set Operations', () => {
|
||||||
test('create new button `condition set` creates new condition object', async ({ page }) => {
|
test('Create new button `condition set` creates new condition object', async ({ page }) => {
|
||||||
//Go to baseURL
|
//Go to baseURL
|
||||||
await page.goto('/', { waitUntil: 'networkidle' });
|
await page.goto('/', { waitUntil: 'networkidle' });
|
||||||
|
|
||||||
@ -45,4 +45,21 @@ test.describe('condition set', () => {
|
|||||||
|
|
||||||
await expect(page.locator('.l-browse-bar__object-name')).toContainText('Unnamed Condition Set');
|
await expect(page.locator('.l-browse-bar__object-name')).toContainText('Unnamed Condition Set');
|
||||||
});
|
});
|
||||||
|
test.fixme('condition set object properties exist', async ({ page }) => {
|
||||||
|
//Go to object created in step one
|
||||||
|
//Verify the Condition Set properties persist on Save
|
||||||
|
//Verify the Condition Set properties persist on page.reload()
|
||||||
|
});
|
||||||
|
test.fixme('condition set object can be modified', async ({ page }) => {
|
||||||
|
//Go to object created in step one
|
||||||
|
//Update the Condition Set properties
|
||||||
|
//Verify the Condition Set properties persist on Save
|
||||||
|
//Verify the Condition Set properties persist on page.reload()
|
||||||
|
});
|
||||||
|
test.fixme('condition set object can be deleted', async ({ page }) => {
|
||||||
|
//Go to object created in step one
|
||||||
|
//Verify that Condition Set object can be deleted
|
||||||
|
//Verify the Condition Set object does not exist in Tree
|
||||||
|
//Verify the Condition Set object does not exist with direct navigation to object's URL
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user