Prettified
This commit is contained in:
parent
0ff8ac7aac
commit
316efeda3c
1 changed files with 4 additions and 6 deletions
|
|
@ -390,7 +390,7 @@ describe("address-questions.vue", () => {
|
|||
state: "",
|
||||
zipCode: "",
|
||||
},
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
// Initial condition to display noMatch warning
|
||||
|
|
@ -405,7 +405,6 @@ describe("address-questions.vue", () => {
|
|||
// Assert
|
||||
let noMatchAlert = wrapper.findComponent({ ref: "alertNoMatchWarning" });
|
||||
expect(noMatchAlert.exists()).toBeFalsy();
|
||||
|
||||
});
|
||||
|
||||
test("user sees noMatch warning and enters city => noMatch warning is removed", async () => {
|
||||
|
|
@ -418,7 +417,7 @@ describe("address-questions.vue", () => {
|
|||
state: "",
|
||||
zipCode: "",
|
||||
},
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
// Initial condition to display noMatch warning
|
||||
|
|
@ -433,7 +432,6 @@ describe("address-questions.vue", () => {
|
|||
// Assert
|
||||
let noMatchAlert = wrapper.findComponent({ ref: "alertNoMatchWarning" });
|
||||
expect(noMatchAlert.exists()).toBeFalsy();
|
||||
|
||||
});
|
||||
|
||||
test("user sees noMatch warning and enters state => noMatch warning is removed", async () => {
|
||||
|
|
@ -446,7 +444,7 @@ describe("address-questions.vue", () => {
|
|||
state: "LS",
|
||||
zipCode: "",
|
||||
},
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
// Initial condition to display noMatch warning
|
||||
|
|
@ -473,7 +471,7 @@ describe("address-questions.vue", () => {
|
|||
state: "",
|
||||
zipCode: "LS",
|
||||
},
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
// Initial condition to display noMatch warning
|
||||
|
|
|
|||
Loading…
Reference in a new issue