mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: enable specs::run::workspaces::explicit_import_map
test (#25611)
Towards #25241
This commit is contained in:
parent
606b7b17c6
commit
394a620da3
3 changed files with 14 additions and 6 deletions
|
@ -1,7 +1,13 @@
|
|||
{
|
||||
// TODO(2.0): update the test, should probably call install first
|
||||
"ignore": true,
|
||||
"args": "run -A --import-map=./import_map.json main.ts",
|
||||
"output": "main.out",
|
||||
"tempDir": true
|
||||
"tempDir": true,
|
||||
"steps": [
|
||||
{
|
||||
"args": "install --import-map=./import_map.json",
|
||||
"output": "install.out"
|
||||
},
|
||||
{
|
||||
"args": "run -A --import-map=./import_map.json main.ts",
|
||||
"output": "main.out"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
Download http://localhost:4260/chalk
|
||||
Download http://localhost:4260/chalk/chalk-5.0.1.tgz
|
||||
Initialize chalk@5.0.1
|
|
@ -1,2 +1 @@
|
|||
[WILDCARD]
|
||||
hello
|
||||
|
|
Loading…
Reference in a new issue