summaryrefslogtreecommitdiff
path: root/tests/fetch_deps.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-04-21 16:40:10 -0400
committerGitHub <noreply@github.com>2019-04-21 16:40:10 -0400
commit9dfebbc9496138efbeedc431068f41662c780f3e (patch)
treec3718c3dc132d11c08c8fc18933daebf886bf787 /tests/fetch_deps.ts
parent6cded14bdf313762956d4d5361cfe8115628b535 (diff)
Fix eslint warnings (#2151)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com> Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
Diffstat (limited to 'tests/fetch_deps.ts')
-rw-r--r--tests/fetch_deps.ts2
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"));
}