From f0707dd873717e060a6c5f2c76b15b52526adc48 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 14 Apr 2021 09:21:51 -0400 Subject: [PATCH] fix integration tests Signed-off-by: Sebastian Malton --- integration/helpers/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/helpers/utils.ts b/integration/helpers/utils.ts index c7fd4e8ddb..066fecd2a2 100644 --- a/integration/helpers/utils.ts +++ b/integration/helpers/utils.ts @@ -86,7 +86,7 @@ export async function clickWhatsNew(app: Application) { export async function clickWelcomeNotification(app: Application) { const itemsText = await app.client.$("div.info-panel").getText(); - if (itemsText === "0 item") { + if (itemsText === "0 items") { // welcome notification should be present, dismiss it await app.client.waitUntilTextExists("div.message", "Welcome!"); await app.client.click("i.Icon.close");