diff options
Diffstat (limited to 'test/cli/run/log-test.test.ts')
-rw-r--r-- | test/cli/run/log-test.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cli/run/log-test.test.ts b/test/cli/run/log-test.test.ts index 2e980cb7b..55c7d6d86 100644 --- a/test/cli/run/log-test.test.ts +++ b/test/cli/run/log-test.test.ts @@ -35,7 +35,7 @@ it("should log .env by default", async () => { expect(stderr?.toString().includes(".env")).toBe(true); }); -function writeDirectoryTree(base, paths) { +function writeDirectoryTree(base: string, paths: Record<string, any>) { for (const path of Object.keys(paths)) { const content = paths[path]; const joined = join(base, path); |