From 1f553a379cbea408145d65b70bbb72282111837e Mon Sep 17 00:00:00 2001 From: Hawken Rives Date: Tue, 24 Jan 2023 18:40:41 -0500 Subject: [PATCH] remove an ID matcher from the basic test --- e2e/basic-smoke.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/basic-smoke.spec.ts b/e2e/basic-smoke.spec.ts index 5d9669a6ef..a315d4f412 100644 --- a/e2e/basic-smoke.spec.ts +++ b/e2e/basic-smoke.spec.ts @@ -24,6 +24,6 @@ test('should show the settings screen after tap', async () => { test('should show home screen after tap to exit settings screen', async () => { await element(by.id('button-open-settings')).tap() await expect(element(by.id('screen-homescreen'))).not.toBeVisible() - await element(by.id('button-close-screen')).tap() + await element(by.text('Done')).tap() await expect(element(by.id('screen-homescreen'))).toBeVisible() })