summaryrefslogtreecommitdiff
path: root/cli/tests/workers/test.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2021-03-08 12:27:49 +0000
committerGitHub <noreply@github.com>2021-03-08 13:27:49 +0100
commit0bc488c85c4bbc5b900cf5ff7b09227345b87763 (patch)
tree315a6bded05a4ab5d9946f837e4ec98162420089 /cli/tests/workers/test.ts
parentceeebe46eeb548ab3048f244a942973d9e8a2f41 (diff)
fix(runtime/js): add navigator interface objects (#9685)
Diffstat (limited to 'cli/tests/workers/test.ts')
-rw-r--r--cli/tests/workers/test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/workers/test.ts b/cli/tests/workers/test.ts
index c2dd41aee..e5e9e44f7 100644
--- a/cli/tests/workers/test.ts
+++ b/cli/tests/workers/test.ts
@@ -118,7 +118,7 @@ Deno.test({
workerOptions,
);
w.onmessage = (e): void => {
- assertEquals(e.data, "true, true, true");
+ assertEquals(e.data, "true, true, true, true");
promise.resolve();
};
w.postMessage("Hello, world!");