From 540860e22132b337e83347345371f3d2bdf31b7f Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 26 May 2023 08:48:33 -0400 Subject: [PATCH] chore: Update smoke test to fix selector due to new namespace-select-filter behaviour Signed-off-by: Sebastian Malton --- open-lens/integration/__tests__/cluster-pages.tests.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/open-lens/integration/__tests__/cluster-pages.tests.ts b/open-lens/integration/__tests__/cluster-pages.tests.ts index 46a20bd32066..6e397d8cecc9 100644 --- a/open-lens/integration/__tests__/cluster-pages.tests.ts +++ b/open-lens/integration/__tests__/cluster-pages.tests.ts @@ -106,9 +106,7 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => { await navigateToPods(frame); - const namespacesSelector = await frame.waitForSelector( - ".NamespaceSelect", - ); + const namespacesSelector = await frame.waitForSelector(".namespace-select-filter .menu .non-icon label"); await namespacesSelector.click(); await namespacesSelector.type(TEST_NAMESPACE);