From 4322a3f370abc280aab104aff88e6d35cd607e25 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Wed, 9 Aug 2023 10:23:24 -0400 Subject: [PATCH] Removed .only and re-ran Unit tests --- src/store/store.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/store.spec.js b/src/store/store.spec.js index 626e630eb..82fa2109e 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -1308,7 +1308,7 @@ describe("Actions", () => { expect(commit).not.toHaveBeenCalledWith(storeMutations.RESET_SCHEDULE); }); - it.only("saveCustomerDetails, should call mutation", () => { + it("saveCustomerDetails, should call mutation", () => { // Arrange const context = state; const commit = jest.fn();