Prettified
This commit is contained in:
parent
3606e7a1c7
commit
519233cad5
1 changed files with 9 additions and 9 deletions
|
|
@ -24,13 +24,13 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: true,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
validate: mockValidate(true),
|
||||
});
|
||||
|
||||
|
||||
const wrapper = shallowMount(modal, {
|
||||
props: {
|
||||
headerText: headerText,
|
||||
|
|
@ -50,7 +50,7 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: true,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
|
|
@ -74,7 +74,7 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: true,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
|
|
@ -106,7 +106,7 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: false,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
|
|
@ -138,7 +138,7 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: true,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
|
|
@ -166,7 +166,7 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: true,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
|
|
@ -194,7 +194,7 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: true,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
|
|
@ -227,7 +227,7 @@ describe("modal.vue", () => {
|
|||
dirty: true,
|
||||
valid: true,
|
||||
validated: true,
|
||||
}
|
||||
};
|
||||
|
||||
useForm.mockReturnValue({
|
||||
meta: mockMeta(fakeMeta),
|
||||
|
|
|
|||
Loading…
Reference in a new issue