mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-16 16:01:22 +02:00
Eliminate the implicit any
This commit is contained in:
parent
8d6737458a
commit
daad2d4ac0
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue