summaryrefslogtreecommitdiff
path: root/tests/testdata
diff options
context:
space:
mode:
authorSatya Rohith <me@satyarohith.com>2024-10-04 15:26:13 +0530
committerGitHub <noreply@github.com>2024-10-04 09:56:13 +0000
commit7b509e492ed6c7ace0f3860c3f4e8e7be3452fda (patch)
tree7a4ff514f01664ef93683184b4cc870f090f185e /tests/testdata
parentedac9166040dc09674072ce57af6a9c5ea958d85 (diff)
tests: enable package_json_node_modules_none (#25825)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'tests/testdata')
-rw-r--r--tests/testdata/task/package_json_node_modules_dir_false/bin.out2
-rw-r--r--tests/testdata/task/package_json_node_modules_dir_false/deno.json3
-rw-r--r--tests/testdata/task/package_json_node_modules_dir_false/package.json9
3 files changed, 0 insertions, 14 deletions
diff --git a/tests/testdata/task/package_json_node_modules_dir_false/bin.out b/tests/testdata/task/package_json_node_modules_dir_false/bin.out
deleted file mode 100644
index d5d59d551..000000000
--- a/tests/testdata/task/package_json_node_modules_dir_false/bin.out
+++ /dev/null
@@ -1,2 +0,0 @@
-Task echo deno eval 'console.log(1)'
-1
diff --git a/tests/testdata/task/package_json_node_modules_dir_false/deno.json b/tests/testdata/task/package_json_node_modules_dir_false/deno.json
deleted file mode 100644
index 23a325cfc..000000000
--- a/tests/testdata/task/package_json_node_modules_dir_false/deno.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "nodeModulesDir": false
-}
diff --git a/tests/testdata/task/package_json_node_modules_dir_false/package.json b/tests/testdata/task/package_json_node_modules_dir_false/package.json
deleted file mode 100644
index 081e076b9..000000000
--- a/tests/testdata/task/package_json_node_modules_dir_false/package.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "scripts": {
- "echo": "deno eval 'console.log(1)'"
- },
- "dependencies": {
- "@denotest/bin": "0.5",
- "other": "npm:@denotest/bin@1.0"
- }
-}