mirror of
https://github.com/denoland/deno.git
synced 2024-12-27 17:49:08 -05:00
29 lines
489 B
Text
29 lines
489 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"envs": {
|
||
|
"DENO_FUTURE": "1"
|
||
|
},
|
||
|
"steps": [
|
||
|
{
|
||
|
"cwd": "./test-project",
|
||
|
"args": "install",
|
||
|
"output": "[WILDCARD]"
|
||
|
},
|
||
|
{
|
||
|
"cwd": "./test-project",
|
||
|
"args": "run -A main.mjs",
|
||
|
"output": "5\n"
|
||
|
},
|
||
|
{
|
||
|
"commandName": "mv",
|
||
|
"args": "test-project test-project-moved",
|
||
|
"output": ""
|
||
|
},
|
||
|
{
|
||
|
"cwd": "./test-project-moved",
|
||
|
"args": "run -A main.mjs",
|
||
|
"output": "5\n"
|
||
|
}
|
||
|
]
|
||
|
}
|