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);