diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-02-05 17:16:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 17:16:07 -0500 |
commit | ed680552a24b7d4b936b7c16a63b46e0f24c0e60 (patch) | |
tree | 176874e2e69ad631885d306ac7d1084b43459f1e /cli/tests/integration_tests.rs | |
parent | 700f5e45ef0af01558d7619e9ca08ae130ca7263 (diff) |
fix: basic web worker message passing (#3893)
Removes OP_HOST_GET_WORKER_LOADED, OP_HOST_POLL_WORKER,
OP_HOST_RESUME_WORKER and ready/messageBuffer in cli/js/workers.ts.
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 08fccd735..9555f93c0 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -401,6 +401,11 @@ itest!(_026_workers { }); */ +itest!(workers_basic { + args: "run --reload workers_basic.ts", + output: "workers_basic.out", +}); + itest!(_027_redirect_typescript { args: "run --reload 027_redirect_typescript.ts", output: "027_redirect_typescript.ts.out", |