diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-07-24 14:21:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-24 14:21:36 +0200 |
commit | b45f9a7357fad1d13c2fbffa5e419e064a3aa89f (patch) | |
tree | 70c957d129377e4e887c948b75ca2c1ceb787721 /cli/tests/integration_tests.rs | |
parent | f162ced76aa475a20a17411510d185c994a25425 (diff) |
fix: deno-types directive should have higher precedence than X-TypeScript-Types header (#6761)
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 87b436a08..ea76fe23b 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1961,6 +1961,12 @@ itest!(type_directives_redirect { http_server: true, }); +itest!(type_headers_deno_types { + args: "run --reload type_headers_deno_types.ts", + output: "type_headers_deno_types.ts.out", + http_server: true, +}); + itest!(ts_type_imports { args: "run --reload ts_type_imports.ts", output: "ts_type_imports.ts.out", |