summaryrefslogtreecommitdiff
path: root/tests/specs/task/npm_run/__test__.jsonc
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-05-23 11:39:48 -0400
committerGitHub <noreply@github.com>2024-05-23 15:39:48 +0000
commit143ea4759fa32bcd32ff983caeaec08929a52e80 (patch)
treeb233ff92f0c8da00a3f74ba795298f69923ea213 /tests/specs/task/npm_run/__test__.jsonc
parent0b8deca08b9257c41055b4f34ebdaf1459b2de89 (diff)
feat(task): run `npm run` commands with Deno more often (#23794)
Closes #23036
Diffstat (limited to 'tests/specs/task/npm_run/__test__.jsonc')
-rw-r--r--tests/specs/task/npm_run/__test__.jsonc17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/specs/task/npm_run/__test__.jsonc b/tests/specs/task/npm_run/__test__.jsonc
new file mode 100644
index 000000000..b6cb249b8
--- /dev/null
+++ b/tests/specs/task/npm_run/__test__.jsonc
@@ -0,0 +1,17 @@
+{
+ "tests": {
+ "uses_deno_no_flags": {
+ "args": "task test",
+ "output": "task_test.out"
+ },
+ "uses_npm_flags": {
+ "args": "task test_using_npm",
+ "output": "task_test_using_npm.out",
+ "exitCode": 1
+ },
+ "npm_run": {
+ "args": "task npm_run",
+ "output": "task_npm_run.out"
+ }
+ }
+}