diff --git a/packages/open-lens/integration/__tests__/cluster-pages.tests.ts b/packages/open-lens/integration/__tests__/cluster-pages.tests.ts index b26997393f..8158f1c008 100644 --- a/packages/open-lens/integration/__tests__/cluster-pages.tests.ts +++ b/packages/open-lens/integration/__tests__/cluster-pages.tests.ts @@ -27,7 +27,7 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => { ({ window, cleanup } = await utils.start()); await utils.clickWelcomeButton(window); - frame = await utils.lauchMinikubeClusterFromCatalog(window); + frame = await utils.launchMinikubeClusterFromCatalog(window); }, 10 * 60 * 1000); afterEach(async () => { @@ -86,7 +86,7 @@ describeIf(minikubeReady(TEST_NAMESPACE))("Minikube based tests", () => { 10 * 60 * 1000, ); - it( + it.only( `should create the ${TEST_NAMESPACE} and a pod in the namespace and then remove that pod via the context menu`, async () => { await navigateToNamespaces(frame); diff --git a/packages/open-lens/integration/helpers/utils.ts b/packages/open-lens/integration/helpers/utils.ts index f92a1aad00..af7820136b 100644 --- a/packages/open-lens/integration/helpers/utils.ts +++ b/packages/open-lens/integration/helpers/utils.ts @@ -116,7 +116,7 @@ function minikubeEntityId() { /** * From the catalog, click the minikube entity and wait for it to connect, returning its frame */ -export async function lauchMinikubeClusterFromCatalog(window: Page): Promise { +export async function launchMinikubeClusterFromCatalog(window: Page): Promise { await window.click("div.TableCell >> text='minikube'"); const minikubeFrame = await window.waitForSelector(`#cluster-frame-${minikubeEntityId()}`);