From 79a57ed3a922dc644548998d490139c3e7144bcc Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 15 Jan 2021 13:47:37 -0500 Subject: [PATCH] Update integration/__tests__/app.tests.ts Co-authored-by: Jim Ehrismann <40840436+jim-docker@users.noreply.github.com> Signed-off-by: Sebastian Malton --- integration/__tests__/app.tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) });