1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-19 19:46:17 +02:00

Eliminate the implicit any

This commit is contained in:
BSKY 2020-03-21 12:03:40 +09:00
parent 8d6737458a
commit daad2d4ac0

View file

@ -317,7 +317,7 @@ test("resolvePaths exclusion pattern returns not found", async () => {
const resolvedPath = await actionUtils.resolvePaths(patterns);
const expectedPath = [];
const expectedPath: string[] = [];
expect(resolvedPath).toStrictEqual(expectedPath);
} finally {
process.chdir(originalCwd);