Prettier formatting

This commit is contained in:
Matt Sykes 2026-04-17 09:02:50 -04:00
parent 780556bbda
commit 591b2ef089

View file

@ -190,10 +190,8 @@ describe("payment-adyen.vue", () => {
describe("splitStreetAddress", () => {
const setInShopStreet = (streetAddress) => {
store.getters.order.serviceLocation.appointmentType =
AppointmentTypeStrings.IN_SHOP;
store.getters.order.serviceLocation.provider.address.streetAddress =
streetAddress;
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.IN_SHOP;
store.getters.order.serviceLocation.provider.address.streetAddress = streetAddress;
};
test("splits typical address into first token as number and remainder as street", () => {
@ -277,8 +275,7 @@ describe("payment-adyen.vue", () => {
});
test("uses mobile service address when appointment is mobile", () => {
store.getters.order.serviceLocation.appointmentType =
AppointmentTypeStrings.MOBILE;
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.MOBILE;
store.getters.order.serviceLocation.address = "700 Broadway Blvd";
store.getters.order.serviceLocation.city = "Columbus";
store.getters.order.serviceLocation.state = "OH";