Remove .only from unit test.

This commit is contained in:
Bryan Mauger 2023-01-25 09:27:31 -05:00
parent ff65f31036
commit a45ad5a11e

View file

@ -49,7 +49,7 @@ describe("alert.vue", () => {
expect(wrapper.vm.alertCopy).toBe("testCopy");
});
it.only("Should container a <router-link> tag if the manualCopy contains a {routerLink: testName, testLink} placeholder", () => {
it("Should container a <router-link> tag if the manualCopy contains a {routerLink: testName, testLink} placeholder", () => {
// Arrange & Act
const wrapper = shallowMount(
alert,