From 392579b5a673964752e38e1e0d9c2c9ae223a382 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 15 Mar 2024 13:27:52 -0400 Subject: chore(specs): use jsonc for metadata file (#22946) Avoids the comment diagnostic that vscode gives. Also, automatically renames .json to .jsonc for the time being. --- tests/specs/check/types_resolved_relative_config/__test__.json | 5 ----- tests/specs/check/types_resolved_relative_config/__test__.jsonc | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 tests/specs/check/types_resolved_relative_config/__test__.json create mode 100644 tests/specs/check/types_resolved_relative_config/__test__.jsonc (limited to 'tests/specs/check') diff --git a/tests/specs/check/types_resolved_relative_config/__test__.json b/tests/specs/check/types_resolved_relative_config/__test__.json deleted file mode 100644 index 6f4937209..000000000 --- a/tests/specs/check/types_resolved_relative_config/__test__.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "args": "check --config sub_dir/deno.json main.ts", - "output": "main.out", - "exitCode": 1 -} diff --git a/tests/specs/check/types_resolved_relative_config/__test__.jsonc b/tests/specs/check/types_resolved_relative_config/__test__.jsonc new file mode 100644 index 000000000..6f4937209 --- /dev/null +++ b/tests/specs/check/types_resolved_relative_config/__test__.jsonc @@ -0,0 +1,5 @@ +{ + "args": "check --config sub_dir/deno.json main.ts", + "output": "main.out", + "exitCode": 1 +} -- cgit v1.2.3