diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-11-06 12:10:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 12:10:19 +1100 |
commit | 5f7c80986fd9cff6a65d4e419fc2972abe992ccf (patch) | |
tree | 8bbee5a70b33539edb4c24d349e80f5383d7a79c /cli/tests/integration_tests.rs | |
parent | 96e03e0b93bf75035887ce02880b832123e3c86d (diff) |
fix(cli): correct libs sent to tsc for unstable worker (#8260)
Fixes #8257
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 9c6c4eef2..6aa2c8a9d 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2792,6 +2792,11 @@ itest!(unstable_disabled_ts2551 { output: "unstable_disabled_ts2551.out", }); +itest!(unstable_worker { + args: "run --reload --unstable --quiet --allow-read unstable_worker.ts", + output: "unstable_worker.ts.out", +}); + itest!(_053_import_compression { args: "run --quiet --reload --allow-net 053_import_compression/main.ts", output: "053_import_compression.out", |