CSR-906 update unit test.

This commit is contained in:
Bryan Mauger 2022-11-07 13:21:36 -05:00
parent 05f555a7d7
commit 4fb2d9b768

View file

@ -33,14 +33,6 @@ describe("modal.vue", () => {
});
expect(wrapper.html()).toEqual(expect.stringContaining(mockCmsContent["BodyText"]));
});
it("Should display footer text when FooterText is defined in the CMS", async () => {
// Act
const wrapper = shallowMount(Modal, {
mixins: [mockMixin],
});
expect(wrapper.html()).toEqual(expect.stringContaining(mockCmsContent["FooterText"]));
});
});
const mockMixin = {