1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2024-09-19 17:36:43 +00:00

Fix tests

This commit is contained in:
Sampark Sharma 2023-01-05 10:35:38 +00:00 committed by GitHub
parent 2637f06e5f
commit 48a27058cf
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -164,9 +164,14 @@ test("save on GHES with AC available", async () => {
await run(new StateProvider());
expect(saveCacheMock).toHaveBeenCalledTimes(1);
expect(saveCacheMock).toHaveBeenCalledWith([inputPath], primaryKey, {
expect(saveCacheMock).toHaveBeenCalledWith(
[inputPath],
primaryKey,
{
uploadChunkSize: 4000000
}, false);
},
false
);
expect(failedMock).toHaveBeenCalledTimes(0);
});