1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00
denoland-deno/tests/specs/permission/allow_import/__test__.jsonc
David Sherret a8d1ab5276
fix(flags): --allow-all should conflict with lower permissions (#25909)
Using `--allow-all` with other `--allow-x` permission flags should cause
an error since `--allow-all` is a superset of `--allow-x`.

Closes #25901
2024-09-27 16:49:43 +00:00

57 lines
1.2 KiB
Text

{
"tests": {
"info": {
"args": "info main.ts",
"output": "info.out"
},
"cache": {
"args": "cache main.ts",
"output": "cache.out",
"exitCode": 1
},
"check": {
"args": "check main.ts",
"output": "check.out",
"exitCode": 1
},
"compile": {
"args": "compile main.ts",
"output": "compile.out",
"exitCode": 1
},
"doc": {
"args": "doc doc.ts",
"output": "doc.out",
"exitCode": 0
},
"doc_allowed": {
"args": "doc --allow-import doc.ts",
"output": "doc_allowed.out",
"exitCode": 0
},
"run": {
"args": "run main.ts",
"output": "run.out",
"exitCode": 1
},
"run_allow_all": {
"args": "run --quiet --allow-all success.ts",
"output": "3\n",
"exitCode": 0
},
"serve": {
"args": "serve main.ts",
"output": "serve.out",
"exitCode": 1
},
"builtin_host": {
"args": "run --quiet builtin_host.ts",
"output": "3\n"
},
"builtin_host_replaced": {
"args": "run --quiet --allow-import=other.host builtin_host.ts",
"output": "[WILDCARD]Requires import access[WILDCARD]",
"exitCode": 1
}
}
}