1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-05-03 00:39:55 +02:00

npm run format

This commit is contained in:
BSKY 2020-03-23 23:35:15 +09:00
parent 150eacd6fa
commit 1729a4d479
19 changed files with 222 additions and 206 deletions

View file

@ -14,7 +14,7 @@ function getTempDir(): string {
}
beforeAll(async () => {
jest.spyOn(io, "which").mockImplementation(tool => {
jest.spyOn(io, "which").mockImplementation((tool) => {
return Promise.resolve(tool);
});
@ -76,10 +76,10 @@ test("create tar", async () => {
"-C",
workspace,
"--files-from",
"manifest.txt"
"manifest.txt",
],
{
cwd: archiveFolder
cwd: archiveFolder,
}
);
});