diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-11-08 07:00:42 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 07:00:42 +1100 |
commit | e9edc05bed299a3e97cf9a8136e6d790f5fc3f14 (patch) | |
tree | 325229ac544bfeb48caeb577354d6cfcff3d8630 /cli/tests/integration_tests.rs | |
parent | 37b7024a8feee04a3fd9e2705c7858f53f2f44d0 (diff) |
fix(cli): ensure that transitory dependencies are emitted (#8275)
Fixes #8111
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 6aa2c8a9d..16be10900 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2865,6 +2865,11 @@ itest!(tsx_imports { output: "tsx_imports.ts.out", }); +itest!(fix_emittable_skipped { + args: "run --reload fix_emittable_skipped.js", + output: "fix_emittable_skipped.ts.out", +}); + itest!(fix_exotic_specifiers { args: "run --quiet --reload fix_exotic_specifiers.ts", output: "fix_exotic_specifiers.ts.out", |