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: "",
|
state: "",
|
||||||
zipCode: "",
|
zipCode: "",
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Initial condition to display noMatch warning
|
// Initial condition to display noMatch warning
|
||||||
|
|
@ -405,7 +405,6 @@ describe("address-questions.vue", () => {
|
||||||
// Assert
|
// Assert
|
||||||
let noMatchAlert = wrapper.findComponent({ ref: "alertNoMatchWarning" });
|
let noMatchAlert = wrapper.findComponent({ ref: "alertNoMatchWarning" });
|
||||||
expect(noMatchAlert.exists()).toBeFalsy();
|
expect(noMatchAlert.exists()).toBeFalsy();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
test("user sees noMatch warning and enters city => noMatch warning is removed", async () => {
|
test("user sees noMatch warning and enters city => noMatch warning is removed", async () => {
|
||||||
|
|
@ -418,7 +417,7 @@ describe("address-questions.vue", () => {
|
||||||
state: "",
|
state: "",
|
||||||
zipCode: "",
|
zipCode: "",
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Initial condition to display noMatch warning
|
// Initial condition to display noMatch warning
|
||||||
|
|
@ -433,7 +432,6 @@ describe("address-questions.vue", () => {
|
||||||
// Assert
|
// Assert
|
||||||
let noMatchAlert = wrapper.findComponent({ ref: "alertNoMatchWarning" });
|
let noMatchAlert = wrapper.findComponent({ ref: "alertNoMatchWarning" });
|
||||||
expect(noMatchAlert.exists()).toBeFalsy();
|
expect(noMatchAlert.exists()).toBeFalsy();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
test("user sees noMatch warning and enters state => noMatch warning is removed", async () => {
|
test("user sees noMatch warning and enters state => noMatch warning is removed", async () => {
|
||||||
|
|
@ -446,7 +444,7 @@ describe("address-questions.vue", () => {
|
||||||
state: "LS",
|
state: "LS",
|
||||||
zipCode: "",
|
zipCode: "",
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Initial condition to display noMatch warning
|
// Initial condition to display noMatch warning
|
||||||
|
|
@ -473,7 +471,7 @@ describe("address-questions.vue", () => {
|
||||||
state: "",
|
state: "",
|
||||||
zipCode: "LS",
|
zipCode: "LS",
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Initial condition to display noMatch warning
|
// Initial condition to display noMatch warning
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue