diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-28 20:38:09 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-28 20:38:09 +1100 |
commit | e01664d0ae6259022a901b0dea026ca350a49446 (patch) | |
tree | e87f55f4b267dd0d0847d0ba764884cfc61ca1a5 /cli/tests/integration_tests.rs | |
parent | a2f126068e17f6b586a049d5167f48284ed14f8e (diff) |
fix(cli): module graph handles redirects properly (#8159)
Fixes #8154
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 cfc946a36..da0a311bb 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2859,6 +2859,12 @@ itest!(proto_exploit { output: "proto_exploit.js.out", }); +itest!(redirect_cache { + http_server: true, + args: "cache --reload http://localhost:4548/cli/tests/subdir/redirects/a.ts", + output: "redirect_cache.out", +}); + itest!(deno_test_coverage { args: "test --coverage --unstable test_coverage.ts", output: "test_coverage.out", |