From 5e04401720930c84f491c47141d6a0c0c4802e8c Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Wed, 27 Mar 2024 10:36:02 -0400 Subject: [PATCH] Update unit test. --- src/ux-components/text-link/text-link.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ux-components/text-link/text-link.spec.js b/src/ux-components/text-link/text-link.spec.js index 8b48ad5eb..d26c1a17b 100644 --- a/src/ux-components/text-link/text-link.spec.js +++ b/src/ux-components/text-link/text-link.spec.js @@ -18,11 +18,11 @@ describe("text-link.vue", () => { expect(paragraph.attributes("class")).toContain("navigation-link"); }); - it("Should return class footer", async () => { + it("Should return class new-window-link", async () => { // Act const wrapper = shallowMount(textLink, { propsData: { - linkType: "footer", + linkType: "newWindowLink", }, }); @@ -30,7 +30,7 @@ describe("text-link.vue", () => { const paragraph = wrapper.find("a"); // Expect - expect(paragraph.attributes("class")).toContain("footer"); + expect(paragraph.attributes("class")).toContain("new-window-link"); }); it("Should return class text-small", async () => {