diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-16 10:34:55 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-16 10:34:55 +1100 |
| commit | bbe4474d39aecfabed52bd080e73d34978b6481b (patch) | |
| tree | 51a1681d6d37cde45b2241cc5772d39700a3573b /cli/tests/integration_tests.rs | |
| parent | bd0c64b9aeeb75eea25402b0ebd5aecc2cec8e3a (diff) | |
fix(cli): ModuleGraph2 properly handles redirects (#7981)
Diffstat (limited to 'cli/tests/integration_tests.rs')
| -rw-r--r-- | cli/tests/integration_tests.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 9dff74f25..d375ba1a1 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1572,6 +1572,16 @@ itest!(_017_import_redirect { output: "017_import_redirect.ts.out", }); +itest!(_017_import_redirect_nocheck { + args: "run --quiet --reload --no-check 017_import_redirect.ts", + output: "017_import_redirect.ts.out", +}); + +itest!(_017_import_redirect_info { + args: "info --quiet --reload 017_import_redirect.ts", + output: "017_import_redirect_info.out", +}); + itest!(_018_async_catch { args: "run --quiet --reload 018_async_catch.ts", output: "018_async_catch.ts.out", |
