From 930644895114db78db2dc730a17da5f43a836ad0 Mon Sep 17 00:00:00 2001 From: guerler Date: Sat, 29 Jun 2024 12:08:17 +0200 Subject: [PATCH] Adjust masthead jest test --- client/src/components/Masthead/Masthead.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Masthead/Masthead.test.js b/client/src/components/Masthead/Masthead.test.js index 445cc235e9b9..f299b5b2500f 100644 --- a/client/src/components/Masthead/Masthead.test.js +++ b/client/src/components/Masthead/Masthead.test.js @@ -52,7 +52,7 @@ describe("Masthead.vue", () => { }); it("should render simple tab item links", () => { - expect(wrapper.findAll("li.nav-item").length).toBe(5); + expect(wrapper.findAll("li.nav-item").length).toBe(4); // Ensure specified link title respected. expect(wrapper.find("#help").text()).toBe("Support, Contact, and Community"); expect(wrapper.find("#help a").attributes("href")).toBe("/about");