diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-07-11 18:29:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-11 18:29:55 +0200 |
commit | a26b4a9f1eaed65e801a1de0ed73b4da76d37e63 (patch) | |
tree | 9c697e6022f2d806bd207834a60ef228cafcf777 /cli/tests/integration_tests.rs | |
parent | 98f6a5a47d6b47b1ac7f09a2923d6051de7aca70 (diff) |
chore: reenable ignored integration tests (#6703)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 2ec25d0d0..f064c4db1 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1237,6 +1237,7 @@ macro_rules! itest( ); // Unfortunately #[ignore] doesn't work with itest! +#[allow(unused)] macro_rules! itest_ignore( ($name:ident {$( $key:ident: $value:expr,)*}) => { #[ignore] @@ -1346,12 +1347,6 @@ itest!(_023_no_ext_with_headers { output: "023_no_ext_with_headers.out", }); -// FIXME(bartlomieju): this test should use remote file -itest_ignore!(_024_import_no_ext_with_headers { - args: "run --reload 024_import_no_ext_with_headers.ts", - output: "024_import_no_ext_with_headers.ts.out", -}); - // TODO(lucacasonato): remove --unstable when permissions goes stable itest!(_025_hrtime { args: "run --quiet --allow-hrtime --unstable --reload 025_hrtime.ts", @@ -1515,8 +1510,8 @@ itest!(_044_bad_resource { exit_code: 1, }); -itest_ignore!(_045_proxy { - args: "run --allow-net --allow-env --allow-run --reload 045_proxy_test.ts", +itest!(_045_proxy { + args: "run --allow-net --allow-env --allow-run --allow-read --reload --quiet 045_proxy_test.ts", output: "045_proxy_test.ts.out", http_server: true, }); @@ -2103,9 +2098,9 @@ itest!(cafile_eval { http_server: true, }); -itest_ignore!(cafile_info { +itest!(cafile_info { args: - "info --cert tls/RootCA.pem https://localhost:5545/cli/tests/cafile_info.ts", + "info --quiet --cert tls/RootCA.pem https://localhost:5545/cli/tests/cafile_info.ts", output: "cafile_info.ts.out", http_server: true, }); |