mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
27 lines
478 B
Text
27 lines
478 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [
|
|
{
|
|
"cwd": "./test-project",
|
|
"args": "install",
|
|
"output": "[WILDCARD]"
|
|
},
|
|
{
|
|
"cwd": "./test-project",
|
|
"args": "run -A main.mjs",
|
|
"output": "5\n"
|
|
},
|
|
{
|
|
"args": [
|
|
"eval",
|
|
"Deno.renameSync('test-project', 'test-project-moved')"
|
|
],
|
|
"output": ""
|
|
},
|
|
{
|
|
"cwd": "./test-project-moved",
|
|
"args": "run -A main.mjs",
|
|
"output": "5\n"
|
|
}
|
|
]
|
|
}
|