Merge branch 'develop' into feature/digital/SSR-219

This commit is contained in:
Kroell 2023-02-28 16:33:15 -05:00
commit 745dc93668

View file

@ -313,6 +313,7 @@ describe("vehicle-parts.vue", () => {
//Assert
expect(wrapper.vm.$router.navigate).toHaveBeenCalled();
expect(wrapper.vm.$router.navigate).toHaveBeenCalledWith("CLICKED_FORWARD_WITH_MOLDING_QUESTIONS", {"query": {"issPage": "vehicle-parts"}}, {}, {}, expect.anything());
});
test("ForwardButtonAction triggers a router.navigate change if there are capability questions", async () => {
@ -376,6 +377,7 @@ describe("vehicle-parts.vue", () => {
//Assert
expect(wrapper.vm.$router.navigate).toHaveBeenCalled();
expect(wrapper.vm.$router.navigate).toHaveBeenCalledWith("CLICKED_FORWARD_WITH_CAPABILITY_QUESTIONS", {"query": {"issPage": "vehicle-parts"}}, {}, {}, expect.anything());
});
});