summaryrefslogtreecommitdiff
path: root/cli/tests/workers/worker_with_top_level_await.ts
diff options
context:
space:
mode:
authorYusuke Tanaka <yusuktan@maguro.dev>2021-05-19 00:24:01 +0900
committerGitHub <noreply@github.com>2021-05-18 17:24:01 +0200
commitcda09c166fd075590c1f8dd313d4f57a560ecbd8 (patch)
tree96cd94b36cc0b357f6d98964f3c46ad5a31391f7 /cli/tests/workers/worker_with_top_level_await.ts
parent21d62b9b9ed7b4cd375a2815bdd9d8ccaa85e537 (diff)
chore: update deno_lint binary used in CI to v0.5.0 (#10652)
Diffstat (limited to 'cli/tests/workers/worker_with_top_level_await.ts')
-rw-r--r--cli/tests/workers/worker_with_top_level_await.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/workers/worker_with_top_level_await.ts b/cli/tests/workers/worker_with_top_level_await.ts
index 6c5528900..bc77c7932 100644
--- a/cli/tests/workers/worker_with_top_level_await.ts
+++ b/cli/tests/workers/worker_with_top_level_await.ts
@@ -6,7 +6,7 @@ function delay(ms: number): Promise<void> {
});
}
-onmessage = (e: MessageEvent) => {
+onmessage = (_e: MessageEvent) => {
postMessage("triggered worker handler");
close();
};