From f6d0399d92671a9d3189f0c7e17d8612d73d68fb Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 14 Jan 2021 11:00:30 -0500 Subject: [PATCH] do not assume that bitnami is guanteed to be in the helm repo list 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 7182a13107..3567898d52 100644 --- a/integration/__tests__/app.tests.ts +++ b/integration/__tests__/app.tests.ts @@ -93,7 +93,7 @@ describe("Lens integration tests", () => { }); it("ensures helm repos", async () => { - await app.client.waitUntilTextExists("div.repos #message-bitnami", "bitnami"); // wait for the helm-cli to fetch the bitnami repo + await app.client.waitUntilTextExists("div.repos #message-bitnami", ""); // wait for the helm-cli to fetch the any repo 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) });