diff options
Diffstat (limited to 'tests/specs/task/boolean_logic')
-rw-r--r-- | tests/specs/task/boolean_logic/__test__.jsonc | 7 | ||||
-rw-r--r-- | tests/specs/task/boolean_logic/deno.json | 5 | ||||
-rw-r--r-- | tests/specs/task/boolean_logic/task_boolean_logic.out | 4 |
3 files changed, 16 insertions, 0 deletions
diff --git a/tests/specs/task/boolean_logic/__test__.jsonc b/tests/specs/task/boolean_logic/__test__.jsonc new file mode 100644 index 000000000..c96e2256c --- /dev/null +++ b/tests/specs/task/boolean_logic/__test__.jsonc @@ -0,0 +1,7 @@ +{ + "args": "task -q --config deno.json boolean_logic", + "output": "task_boolean_logic.out", + "envs": { + "NO_COLOR": "1" + } +} diff --git a/tests/specs/task/boolean_logic/deno.json b/tests/specs/task/boolean_logic/deno.json new file mode 100644 index 000000000..4d3aeb4ce --- /dev/null +++ b/tests/specs/task/boolean_logic/deno.json @@ -0,0 +1,5 @@ +{ + "tasks": { + "boolean_logic": "sleep 0.1 && echo 3 && echo 4 & echo 1 && echo 2 || echo NOPE" + } +} diff --git a/tests/specs/task/boolean_logic/task_boolean_logic.out b/tests/specs/task/boolean_logic/task_boolean_logic.out new file mode 100644 index 000000000..94ebaf900 --- /dev/null +++ b/tests/specs/task/boolean_logic/task_boolean_logic.out @@ -0,0 +1,4 @@ +1 +2 +3 +4 |