This commit is contained in:
whywaita 2023-10-18 01:09:16 +09:00
parent 0748517b1b
commit 589948e5a6
No known key found for this signature in database
GPG key ID: 410FE9327D2F4F0E
6 changed files with 84 additions and 28 deletions

View file

@ -82,7 +82,9 @@ test("restore with no cache found", async () => {
{
lookupOnly: false
},
false
false,
undefined,
""
);
expect(outputMock).toHaveBeenCalledWith("cache-primary-key", key);
@ -124,7 +126,9 @@ test("restore with restore keys and no cache found", async () => {
{
lookupOnly: false
},
false
false,
undefined,
""
);
expect(outputMock).toHaveBeenCalledWith("cache-primary-key", key);
@ -163,7 +167,9 @@ test("restore with cache found for key", async () => {
{
lookupOnly: false
},
false
false,
undefined,
""
);
expect(outputMock).toHaveBeenCalledWith("cache-primary-key", key);
@ -206,7 +212,9 @@ test("restore with cache found for restore key", async () => {
{
lookupOnly: false
},
false
false,
undefined,
""
);
expect(outputMock).toHaveBeenCalledWith("cache-primary-key", key);