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 resolvedPath = await actionUtils.resolvePaths(patterns);
const expectedPath = []; const expectedPath: string[] = [];
expect(resolvedPath).toStrictEqual(expectedPath); expect(resolvedPath).toStrictEqual(expectedPath);
} finally { } finally {
process.chdir(originalCwd); process.chdir(originalCwd);