diff --git a/integration/__tests__/app.tests.ts b/integration/__tests__/app.tests.ts index 0d58e3fa54..c986e4804e 100644 --- a/integration/__tests__/app.tests.ts +++ b/integration/__tests__/app.tests.ts @@ -99,7 +99,7 @@ describe("Lens integration tests", () => { const { stdout: reposJson } = await promiseExec("helm repo list -o json"); const repos = JSON.parse(reposJson); - await app.client.waitUntilTextExists("div.repos #message-bitnami", repos[0].name); // wait for the helm-cli to fetch the any repo + await app.client.waitUntilTextExists("div.repos #message-bitnami", repos[0].name); // wait for the helm-cli to fetch the repo(s) await app.client.click("#HelmRepoSelect"); // click the repo select to activate the drop-down await app.client.waitUntilTextExists("div.Select__option", ""); // wait for at least one option to appear (any text) });