diff options
| author | HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> | 2024-09-11 18:39:47 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-11 17:39:47 +0200 |
| commit | 1463a4ad5805b1b29f33b695ce19d4c42b671790 (patch) | |
| tree | d625cadfd283e41da78b65998ad10036619ba7bb /tests/specs/task/post_only | |
| parent | c64aa50c0e4219ef623a6ec3b939ac10a4568563 (diff) | |
chore: deprecate task itests (#25558)
This PR is part of #22907
Diffstat (limited to 'tests/specs/task/post_only')
| -rw-r--r-- | tests/specs/task/post_only/__test__.jsonc | 8 | ||||
| -rw-r--r-- | tests/specs/task/post_only/bin.out | 4 | ||||
| -rw-r--r-- | tests/specs/task/post_only/package.json | 5 |
3 files changed, 17 insertions, 0 deletions
diff --git a/tests/specs/task/post_only/__test__.jsonc b/tests/specs/task/post_only/__test__.jsonc new file mode 100644 index 000000000..4c37e3e63 --- /dev/null +++ b/tests/specs/task/post_only/__test__.jsonc @@ -0,0 +1,8 @@ +{ + "args": "task test", + "output": "bin.out", + "envs": { + "NO_COLOR": "1" + }, + "exitCode": 1 +} diff --git a/tests/specs/task/post_only/bin.out b/tests/specs/task/post_only/bin.out new file mode 100644 index 000000000..9e7cea091 --- /dev/null +++ b/tests/specs/task/post_only/bin.out @@ -0,0 +1,4 @@ +Task not found: test +Available tasks: +- posttest (package.json) + echo 'posttest' diff --git a/tests/specs/task/post_only/package.json b/tests/specs/task/post_only/package.json new file mode 100644 index 000000000..ce8a6bbd5 --- /dev/null +++ b/tests/specs/task/post_only/package.json @@ -0,0 +1,5 @@ +{ + "scripts": { + "posttest": "echo 'posttest'" + } +} |
