1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/add/missing_prefix/__test__.jsonc

15 lines
354 B
Text

{
"tempDir": true,
"steps": [
{
"args": "add ajv",
"output": "error: ajv is missing a prefix. Did you mean `deno add npm:ajv`?\n",
"exitCode": 1
},
{
"args": "add @std/testing",
"output": "error: @std/testing is missing a prefix. Did you mean `deno add jsr:@std/testing`?\n",
"exitCode": 1
}
]
}