Skip to content

Commit

Permalink
chore: Fix spelling of helper function
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Malton <sebastian@malton.name>
  • Loading branch information
Nokel81 committed Apr 17, 2023
1 parent 425af8c commit 806de79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion packages/open-lens/integration/helpers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Frame> {
export async function launchMinikubeClusterFromCatalog(window: Page): Promise<Frame> {
await window.click("div.TableCell >> text='minikube'");

const minikubeFrame = await window.waitForSelector(`#cluster-frame-${minikubeEntityId()}`);
Expand Down

0 comments on commit 806de79

Please sign in to comment.