CASH-399 - format code

This commit is contained in:
Minojhini Valaiyapathi 2025-03-19 13:23:03 -04:00
parent fbbadd721f
commit 7014e97c76
4 changed files with 9 additions and 11 deletions

View file

@ -39,8 +39,8 @@ export default {
default: "text area", default: "text area",
}, },
}, },
// TODO: At some point in the future we should probably add the tie in to validation here in case the field must be populated for some other use cases // TODO: At some point in the future we should probably add the tie in to validation here in case the field must be populated for some other use cases
setup() {}, setup() {},
computed: { computed: {
questionText() { questionText() {
return this.getCmsContent(this.cmsWidgetName, "QuestionText"); return this.getCmsContent(this.cmsWidgetName, "QuestionText");

View file

@ -21,7 +21,7 @@ const mockStoreActions = {
SAVE_CUSTOMER_DETAILS: "SAVE_CUSTOMER_DETAILS", SAVE_CUSTOMER_DETAILS: "SAVE_CUSTOMER_DETAILS",
SAVE_SERVICE_LOCATION_TECH_NOTES: "SAVE_SERVICE_LOCATION_TECH_NOTES", SAVE_SERVICE_LOCATION_TECH_NOTES: "SAVE_SERVICE_LOCATION_TECH_NOTES",
SAVE_PAYMENT_METHOD_CHOICE: "SAVE_PAYMENT_METHOD_CHOICE", SAVE_PAYMENT_METHOD_CHOICE: "SAVE_PAYMENT_METHOD_CHOICE",
} };
describe("CustomerDetails.vue", () => { describe("CustomerDetails.vue", () => {
let wrapper; let wrapper;
@ -77,6 +77,4 @@ describe("CustomerDetails.vue", () => {
expect(techNotes.props("modelValue")).toBe("Initial Tech Notes"); expect(techNotes.props("modelValue")).toBe("Initial Tech Notes");
expect(techNotes.props("textAreaLabelCopy")).toBe("Mocked CMS Content"); expect(techNotes.props("textAreaLabelCopy")).toBe("Mocked CMS Content");
}); });
}); });