diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-12-16 10:45:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-16 21:45:41 +1100 |
commit | 9ffc7edc23444be8bdcc1befd3709b309780e3d1 (patch) | |
tree | 551a223016816b92a5f8cf57949c331bf087a960 /cli/tests/integration/run_tests.rs | |
parent | e28fb70aeecf548d150312c30f7f32b60c4fdece (diff) |
refactor(cli): use GraphData for check and emit (#12960)
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index c04e4731c..d36d0de1b 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -1583,6 +1583,23 @@ itest!(worker_close_in_wasm_reactions { output: "worker_close_in_wasm_reactions.js.out", }); +itest!(reference_types_error { + args: "run reference_types_error.js", + output: "reference_types_error.js.out", + exit_code: 1, +}); + +itest!(reference_types_error_no_check { + args: "run --no-check reference_types_error.js", + output_str: Some(""), +}); + +itest!(jsx_import_source_error { + args: "run --config jsx/deno-jsx-error.jsonc jsx_import_source_no_pragma.tsx", + output: "jsx_import_source_error.out", + exit_code: 1, +}); + #[test] fn no_validate_asm() { let output = util::deno_cmd() |