diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-03-11 02:56:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-10 20:56:14 -0500 |
| commit | 47f22777beb7eb98a07fa56fbbd40ab5c1fa231e (patch) | |
| tree | aa61065f07df3c1ad5a28326801720593a8cdd19 /cli/tests/testdata/task/deno.json | |
| parent | 808f797633ba82c0e9198481ddd742284a03cb9c (diff) | |
feat: "deno task" subcommand (#13725)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/tests/testdata/task/deno.json')
| -rw-r--r-- | cli/tests/testdata/task/deno.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tests/testdata/task/deno.json b/cli/tests/testdata/task/deno.json new file mode 100644 index 000000000..c26e143e1 --- /dev/null +++ b/cli/tests/testdata/task/deno.json @@ -0,0 +1,8 @@ +{ + "tasks": { + "boolean_logic": "sleep 0.1 && echo 3 && echo 4 & echo 1 && echo 2 || echo NOPE", + "echo": "echo 1", + "strings": "deno run main.ts && deno eval \"console.log(\\\"test\\\")\"", + "exit_code_5": "echo $(echo 10 ; exit 2) && exit 5" + } +} |
