diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-06-09 22:21:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 22:21:02 +1000 |
commit | e779ea956546fc311ad5a98260d1091127a9bfe7 (patch) | |
tree | e406f10ee3e0fd4da9ae4e7326a0766d7b840f8e /cli/tests/integration_tests.rs | |
parent | c84c747ea491bd42f11323e1a0cc54900e1146c0 (diff) |
fix(runtime): early binding to dispatchEvent in workers (#10904)
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 bc67d5479..3d606b2a5 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3972,6 +3972,11 @@ console.log("finish"); output: "fix_tsc_file_exists.out", }); + itest!(fix_worker_dispatchevent { + args: "run --quiet --reload fix_worker_dispatchevent.ts", + output: "fix_worker_dispatchevent.ts.out", + }); + itest!(es_private_fields { args: "run --quiet --reload es_private_fields.js", output: "es_private_fields.js.out", |