This commit is contained in:
Shubham Tiwari 2022-03-28 18:17:18 +05:30
parent 0137340fba
commit c31528629d

View File

@ -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