From b5e5a881638b830815e79c5992553d5dc98a6734 Mon Sep 17 00:00:00 2001 From: rheabhutada02 <83424582+rheabhutada02@users.noreply.github.com> Date: Mon, 21 Nov 2022 16:14:09 -0800 Subject: [PATCH] fixed the pathing issue for images in main.e2e.test.js --- source/assets/scripts/main.e2e.test.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/source/assets/scripts/main.e2e.test.js b/source/assets/scripts/main.e2e.test.js index f6c5a4a..11fe130 100644 --- a/source/assets/scripts/main.e2e.test.js +++ b/source/assets/scripts/main.e2e.test.js @@ -65,12 +65,12 @@ describe("test App end to end", async () => { it("check details page", async () => { // check the details page for correctness let expected = { - imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png", + imgSrc: "http://localhost:8080/assets/images/plate_with_cutlery.png", mealName: "sample name", comments: "sample comment", restaurant: "sample restaurant", tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"], - rating: "http://localhost:8080/assets/images/icons/1-star.svg" + rating: "http://localhost:8080/assets/images/1-star.svg" }; await checkCorrectness(page, "d", expected); }); @@ -86,12 +86,12 @@ describe("test App end to end", async () => { let shadowRoot = await review_card.getProperty("shadowRoot"); let expected = { - imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png", + imgSrc: "http://localhost:8080/assets/images/plate_with_cutlery.png", mealName: "sample name", comments: "sample comment", restaurant: "sample restaurant", tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"], - rating: "http://localhost:8080/assets/images/icons/1-star.svg" + rating: "http://localhost:8080/assets/images/1-star.svg" }; await checkCorrectness(shadowRoot, "a", expected); }); @@ -111,12 +111,12 @@ describe("test App end to end", async () => { // check the details page for correctness let expected = { - imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png", + imgSrc: "http://localhost:8080/assets/images/plate_with_cutlery.png", mealName: "sample name", comments: "sample comment", restaurant: "sample restaurant", tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"], - rating: "http://localhost:8080/assets/images/icons/1-star.svg" + rating: "http://localhost:8080/assets/images/1-star.svg" }; await checkCorrectness(page, "d", expected); }); @@ -133,12 +133,12 @@ describe("test App end to end", async () => { // check the details page for correctness let expected = { - imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png", + imgSrc: "http://localhost:8080/assets/images/plate_with_cutlery.png", mealName: "sample name", comments: "sample comment", restaurant: "sample restaurant", tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"], - rating: "http://localhost:8080/assets/images/icons/1-star.svg" + rating: "http://localhost:8080/assets/images/1-star.svg" }; await checkCorrectness(shadowRoot, "a", expected); }); @@ -176,12 +176,12 @@ describe("test App end to end", async () => { it("check details page", async () => { // check the details page for correctness let expected = { - imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png", + imgSrc: "http://localhost:8080/assets/images/plate_with_cutlery.png", mealName: "updated name", comments: "updated comment", restaurant: "updated restaurant", tags: ["tag -0", "tag -1", "tag -2", "tag -3", "tag -4", "tag -5"], - rating: "http://localhost:8080/assets/images/icons/5-star.svg" + rating: "http://localhost:8080/assets/images/5-star.svg" }; await checkCorrectness(page, "d", expected); }); @@ -198,12 +198,12 @@ describe("test App end to end", async () => { // check the details page for correctness let expected = { - imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png", + imgSrc: "http://localhost:8080/assets/images/plate_with_cutlery.png", mealName: "updated name", comments: "updated comment", restaurant: "updated restaurant", tags: ["tag -0", "tag -1", "tag -2", "tag -3", "tag -4", "tag -5"], - rating: "http://localhost:8080/assets/images/icons/5-star.svg" + rating: "http://localhost:8080/assets/images/5-star.svg" }; await checkCorrectness(shadowRoot, "a", expected); });