tests: enable package_json_node_modules_none (#25825)

Co-authored-by: David Sherret <dsherret@gmail.com>
This commit is contained in:
Satya Rohith 2024-10-04 15:26:13 +05:30 committed by GitHub
parent edac916604
commit 7b509e492e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 19 additions and 20 deletions

View file

@ -0,0 +1,6 @@
{
"tempDir": true,
"args": "task echo",
"output": "bin.out",
"exitCode": 0
}

View file

@ -0,0 +1,8 @@
[UNORDERED_START]
Download http://localhost:4260/@denotest/bin
Download http://localhost:4260/@denotest/bin/1.0.0.tgz
Download http://localhost:4260/@denotest/bin/0.5.0.tgz
[UNORDERED_END]
Task echo deno eval 'console.log(1)' && cli-esm hi
1
hi

View file

@ -0,0 +1,3 @@
{
"nodeModulesDir": "none"
}

View file

@ -0,0 +1,9 @@
{
"scripts": {
"echo": "deno eval 'console.log(1)' && cli-esm hi"
},
"dependencies": {
"@denotest/bin": "0.5",
"other": "npm:@denotest/bin@1.0"
}
}