From c04df4b4c89a8d313a3c778a342f5662250ead5a Mon Sep 17 00:00:00 2001 From: ammarahm-ed Date: Mon, 19 Jun 2023 07:49:40 +0500 Subject: [PATCH] mobile: fix failing tests --- apps/mobile/e2e/tests/index.e2e.js | 1 - apps/mobile/e2e/tests/notebook.e2e.js | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/mobile/e2e/tests/index.e2e.js b/apps/mobile/e2e/tests/index.e2e.js index 4b82e9ffa..49e088e25 100644 --- a/apps/mobile/e2e/tests/index.e2e.js +++ b/apps/mobile/e2e/tests/index.e2e.js @@ -27,7 +27,6 @@ describe("APP LAUNCH AND NAVIGATION", () => { it("Basic navigation should work", async () => { await prepare(); await navigate("Notebooks"); - await tapByText("Skip introduction"); await sleep(500); await navigate("Favorites"); await navigate("Trash"); diff --git a/apps/mobile/e2e/tests/notebook.e2e.js b/apps/mobile/e2e/tests/notebook.e2e.js index ce97ccbd6..57894e867 100644 --- a/apps/mobile/e2e/tests/notebook.e2e.js +++ b/apps/mobile/e2e/tests/notebook.e2e.js @@ -120,7 +120,7 @@ describe("NOTEBOOKS", () => { await visibleByText(note.body); }); - it.only("Add new topic to notebook", async () => { + it("Add new topic to notebook", async () => { await prepare(); await navigate("Notebooks"); await sleep(500); @@ -133,7 +133,6 @@ describe("NOTEBOOKS", () => { await elementById("input-title").typeText("Topic"); await tapByText("Add"); await sleep(500); - await tapByText("Topic"); }); it("Edit topic", async () => {