Eliminate the implicit any

pull/202/head
BSKY 5 years ago
parent 8d6737458a
commit daad2d4ac0

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

Loading…
Cancel
Save