mobile: fix failing tests

This commit is contained in:
ammarahm-ed
2023-06-19 07:49:40 +05:00
parent 5c849c39b4
commit c04df4b4c8
2 changed files with 1 additions and 3 deletions

View File

@@ -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");

View File

@@ -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 () => {