From 14bd0ef18905c8ef999124e38c9f631a2580dac2 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 46a20bd320664..6e397d8cecc95 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);