Fix Warranty text link text in unit test.

This commit is contained in:
Bryan Mauger 2023-03-08 16:29:19 -05:00
parent 838b29de3b
commit 056f88dd50

View file

@ -56,12 +56,12 @@ describe("menu-modal.vue", () => {
expect(icon.attributes('alt')).toBe('Your privacy choices'); expect(icon.attributes('alt')).toBe('Your privacy choices');
}); });
it("Should returnDo not sell my information text link text", async () => { it("Should return Warranty text link text", async () => {
// Act // Act
const wrapper = shallowMount(menuModal); const wrapper = shallowMount(menuModal);
// Expect // Expect
expect(wrapper.html()).toContain("Do not sell my information"); expect(wrapper.html()).toContain("Warranty");
}); });
}); });