1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2024-11-14 10:26:17 +01:00
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