From daad2d4ac036245146c58680863e4f22b93314c8 Mon Sep 17 00:00:00 2001 From: BSKY Date: Sat, 21 Mar 2020 12:03:40 +0900 Subject: [PATCH] Eliminate the implicit any --- __tests__/actionUtils.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/actionUtils.test.ts b/__tests__/actionUtils.test.ts index 1e92236..5c45053 100644 --- a/__tests__/actionUtils.test.ts +++ b/__tests__/actionUtils.test.ts @@ -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);