diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-21 21:57:01 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 21:57:01 +1100 |
commit | 0fb39f9176c5bfb6a8cd50addd85d596fe93c459 (patch) | |
tree | 7f9fb50e53d8cd4b5caaa1f7769a3aa13489149e /cli/tests/integration_tests.rs | |
parent | be89bdfed7feea01aa606f4202d23a8d9fa06473 (diff) |
feat(cli): add types for WeakRef/FinalizationRegistry (#8056)
Fixes #8051
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 f7edf5a42..8956d3f7b 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2641,6 +2641,11 @@ itest!(wasm_unreachable { exit_code: 1, }); +itest!(weakref { + args: "run --quiet --reload weakref.ts", + output: "weakref.ts.out", +}); + itest!(top_level_await_order { args: "run --allow-read top_level_await_order.js", output: "top_level_await_order.out", |