From c31528629d55886d56018ef0e8d0da5986e4fe31 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Mon, 28 Mar 2022 18:17:18 +0530 Subject: [PATCH] typo --- __tests__/save.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/save.test.ts b/__tests__/save.test.ts index be4aba3..7598e0c 100644 --- a/__tests__/save.test.ts +++ b/__tests__/save.test.ts @@ -104,7 +104,7 @@ test("save with no primary key in state outputs warning", async () => { expect(failedMock).toHaveBeenCalledTimes(0); }); -test("save without AC available should no=op", async () => { +test("save without AC available should no-op", async () => { jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation( () => false ); @@ -116,7 +116,7 @@ test("save without AC available should no=op", async () => { expect(saveCacheMock).toHaveBeenCalledTimes(0); }); -test("save on ghes without AC available should no=op", async () => { +test("save on ghes without AC available should no-op", async () => { jest.spyOn(actionUtils, "isGhes").mockImplementation(() => true); jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation( () => false