From c92473df7e3640722aaff5b37726d217af54048a Mon Sep 17 00:00:00 2001 From: muellerfluri Date: Thu, 26 Sep 2024 16:15:02 +0200 Subject: [PATCH] fix(citrus-simulator-ui): remove unnecessary test https://github.com/citrusframework/citrus-simulator/issues/303 --- simulator-ui/tests/entities.spec.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/simulator-ui/tests/entities.spec.ts b/simulator-ui/tests/entities.spec.ts index 3ea55599..5527d5f6 100644 --- a/simulator-ui/tests/entities.spec.ts +++ b/simulator-ui/tests/entities.spec.ts @@ -136,16 +136,6 @@ test.describe('test results entity table', () => { }); }); -test('should display table of test parameters', async ({ page }) => { - const contentObject = entityPageContentMap[5]; - await mockBackendResponse(page, contentObject.apiUrl, contentObject.contentJson); - - await page.goto(contentObject.entityUrl); - - await checkEntityPageContentValueAndVisibility(page, contentObject); - await checkIfRefreshButtonWorks(page, contentObject); -}); - const checkEntityPageContentValueAndVisibility = async (page: Page, contentObject: EntityPageContentObject): Promise => { for (const locator of contentObject.locators) { await expect(page.locator(locator)).toHaveCount(1);