Changed test page name from vehicle-lookup to vin-lookup

This commit is contained in:
Matt Sykes 2026-01-29 10:27:53 -05:00
parent 68e2bc80f9
commit 16b3d669a9

View file

@ -166,7 +166,7 @@ describe("vin-lookup.vue", () => {
isCarIdDifferent: true,
isSelectedGlassAvailableForVehicle: false,
});
wrapper.vm.pageName = "vehicle-lookup";
wrapper.vm.pageName = "vin-lookup";
// Act
await wrapper.vm.navigateForward();
@ -175,7 +175,7 @@ describe("vin-lookup.vue", () => {
expect(wrapper.vm.$router.navigateWithSaving).toBeCalledTimes(1);
expect(wrapper.vm.$router.navigateWithSaving).toHaveBeenCalledWith(
navigationScenarios.SELECTED_VIN_WITH_MISMATCHED_GLASS,
"vehicle-lookup"
"vin-lookup"
);
});