diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-16 14:39:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 15:39:58 +0200 |
commit | 968f441da32ae5fc3783a4f9bcda3d34fa276b4d (patch) | |
tree | 9dee28c5203fd326ddc0c60020e97bd1a6a12748 /tests/integration/info_tests.rs | |
parent | 8fa92228bb748bdc59e0fe003108dcaea0a18d10 (diff) |
test: rewrite some ignored tests to spec tests (#25652)
Ref https://github.com/denoland/deno/issues/25241
Rewritten these tests:
- check::package_json_basic
- check::package_json_fail_check
- check::package_json_with_deno_json
- info::package_json_basic
- test::package_json_basic
- run::package_json_auto_discovered_for_npm_binary
- run::package_json_with_deno_json
Diffstat (limited to 'tests/integration/info_tests.rs')
-rw-r--r-- | tests/integration/info_tests.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/integration/info_tests.rs b/tests/integration/info_tests.rs index 38dd9448f..7699baba8 100644 --- a/tests/integration/info_tests.rs +++ b/tests/integration/info_tests.rs @@ -2,7 +2,6 @@ use test_util as util; use test_util::itest; -// use util::env_vars_for_npm_tests; use util::TestContextBuilder; #[test] @@ -110,17 +109,6 @@ itest!(with_config_override { output: "info/with_config/with_config.out", }); -// TODO(2.0): this test should be a spec test and first run `deno install` -// itest!(package_json_basic { -// args: "info --quiet main.ts", -// output: "package_json/basic/main.info.out", -// envs: env_vars_for_npm_tests(), -// http_server: true, -// cwd: Some("package_json/basic"), -// copy_temp_dir: Some("package_json/basic"), -// exit_code: 0, -// }); - itest!(info_import_map { args: "info preact/debug", output: "info/with_import_map/with_import_map.out", |