From 695f314a913da3aa691381341385cbc1ef71b503 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sat, 20 Apr 2024 20:13:46 -0400 Subject: feat(task): support running npm binary commands in deno.json (#23478) npm binary commands like `vite` from a `node_modules/.bin` folder will now execute when defined in a deno.json Closes https://github.com/denoland/deno/issues/23477 --- tests/integration/task_tests.rs | 56 ----------------------------------------- 1 file changed, 56 deletions(-) (limited to 'tests/integration') diff --git a/tests/integration/task_tests.rs b/tests/integration/task_tests.rs index b64e329a5..4012081f7 100644 --- a/tests/integration/task_tests.rs +++ b/tests/integration/task_tests.rs @@ -3,11 +3,9 @@ // Most of the tests for this are in deno_task_shell. // These tests are intended to only test integration. -use deno_core::serde_json::json; use test_util::env_vars_for_npm_tests; use test_util::itest; use test_util::TestContext; -use test_util::TestContextBuilder; itest!(task_no_args { args: "task -q --config task/deno_json/deno.json", @@ -302,57 +300,3 @@ itest!(task_deno_no_pre_post { exit_code: 0, envs: vec![("NO_COLOR".to_string(), "1".to_string())], }); - -#[test] -fn task_byonm() { - let context = TestContextBuilder::for_npm().use_temp_cwd().build(); - let temp_dir = context.temp_dir().path(); - temp_dir.join("package.json").write_json(&json!({ - "name": "example", - "scripts": { - "say": "cowsay 'do make say'", - "think": "cowthink think" - }, - "dependencies": { - "cowsay": "*" - } - })); - temp_dir.join("deno.json").write_json(&json!({ - "unstable": ["byonm"], - })); - context.run_npm("install"); - - context - .new_command() - .args_vec(["task", "say"]) - .run() - .assert_matches_text( - r#"Task say cowsay 'do make say' - _____________ -< do make say > - ------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || -"#, - ); - - context - .new_command() - .args_vec(["task", "think"]) - .run() - .assert_matches_text( - r#"Task think cowthink think - _______ -( think ) - ------- - o ^__^ - o (oo)\_______ - (__)\ )\/\ - ||----w | - || || -"#, - ); -} -- cgit v1.2.3