summaryrefslogtreecommitdiff
path: root/tests/specs/lockfile/no_lock/__test__.jsonc
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-04-29 10:08:27 -0400
committerGitHub <noreply@github.com>2024-04-29 10:08:27 -0400
commitda52058a945999d486b07700d2834f027a65947c (patch)
treeb6031c274cbc36dcefc6d681473e366cdb208c89 /tests/specs/lockfile/no_lock/__test__.jsonc
parentb02ffec37c73be8a73b95b33b32efa693e84e01b (diff)
chore: migrate bench, publish, and more itests to spec tests (#23584)
Diffstat (limited to 'tests/specs/lockfile/no_lock/__test__.jsonc')
-rw-r--r--tests/specs/lockfile/no_lock/__test__.jsonc31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/specs/lockfile/no_lock/__test__.jsonc b/tests/specs/lockfile/no_lock/__test__.jsonc
new file mode 100644
index 000000000..60bbd17e0
--- /dev/null
+++ b/tests/specs/lockfile/no_lock/__test__.jsonc
@@ -0,0 +1,31 @@
+{
+ "steps": [{
+ "args": "info main.ts",
+ "output": "fail_initial.out",
+ "exitCode": 10
+ }, {
+ "args": "info --no-lock main.ts",
+ "output": "info.nolock.out"
+ }, {
+ "args": "bench",
+ "output": "fail.out",
+ "exitCode": 10
+ }, {
+ "args": "bench --no-lock",
+ "output": "bench.nolock.out"
+ }, {
+ "args": "doc main.ts",
+ "exitCode": 10,
+ "output": "fail.out"
+ }, {
+ "args": "doc --no-lock main.ts",
+ "output": "doc.nolock.out"
+ }, {
+ "args": "test",
+ "exitCode": 10,
+ "output": "fail.out"
+ }, {
+ "args": "test --no-lock",
+ "output": "test.nolock.out"
+ }]
+}