diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 13:42:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 13:42:05 -0500 |
commit | d0a4e23ae824baf1994291d8480be29719f1b99a (patch) | |
tree | c7d608596c29df0fa0d8b87d527d6897759a79fc /cli/tests/integration/npm_tests.rs | |
parent | 8fc62f93bfeb63edf2ee875ee5d4f8b63728f838 (diff) |
fix(npm): better error message when attempting to use typescript in npm packages (#16813)
Diffstat (limited to 'cli/tests/integration/npm_tests.rs')
-rw-r--r-- | cli/tests/integration/npm_tests.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tests/integration/npm_tests.rs b/cli/tests/integration/npm_tests.rs index ea577d412..288500ce4 100644 --- a/cli/tests/integration/npm_tests.rs +++ b/cli/tests/integration/npm_tests.rs @@ -314,6 +314,14 @@ itest!(types_no_types_entry { exit_code: 0, }); +itest!(typescript_file_in_package { + args: "run npm/typescript_file_in_package/main.ts", + output: "npm/typescript_file_in_package/main.out", + envs: env_vars(), + http_server: true, + exit_code: 1, +}); + #[test] fn parallel_downloading() { let (out, _err) = util::run_and_collect_output_with_args( |