diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-09-27 11:16:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 14:16:18 -0400 |
commit | ebcb032c6bc60ae94039bc047509acffd9713379 (patch) | |
tree | de2361870fcb5a4875e87b51ad4f7903b676ec9f /cli/tests/integration_tests.rs | |
parent | 249d82099ecc2851ba0309d5b57a77fd8e728c9a (diff) |
fix: no check recognizes require (#7720)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 4ec816c4f..c062d3371 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2516,6 +2516,12 @@ itest!(info_type_import { output: "info_type_import.out", }); +itest!(ignore_require { + args: "cache --reload --no-check ignore_require.js", + output_str: Some(""), + exit_code: 0, +}); + #[test] fn cafile_env_fetch() { use deno_core::url::Url; |