diff options
Diffstat (limited to 'tests/fetch_deps.ts')
-rw-r--r-- | tests/fetch_deps.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fetch_deps.ts b/tests/fetch_deps.ts index 530a56283..370a8c561 100644 --- a/tests/fetch_deps.ts +++ b/tests/fetch_deps.ts @@ -7,7 +7,7 @@ async function main(): Promise<void> { const json = await response.json(); const deps = Object.keys(json.devDependencies); console.log("Deno JS Deps"); - console.log(deps.map(d => `* ${d}`).join("\n")); + console.log(deps.map((d): string => `* ${d}`).join("\n")); assert(deps.includes("typescript")); } |