summaryrefslogtreecommitdiff
path: root/tests/specs/npm/es_module/__test__.json
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-03-15 13:27:52 -0400
committerGitHub <noreply@github.com>2024-03-15 17:27:52 +0000
commit392579b5a673964752e38e1e0d9c2c9ae223a382 (patch)
tree895345b9ace697d687bad2519896c39e97ce9f4d /tests/specs/npm/es_module/__test__.json
parentce768bac834c1efebf2663b01f6e46db99329631 (diff)
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.
Diffstat (limited to 'tests/specs/npm/es_module/__test__.json')
-rw-r--r--tests/specs/npm/es_module/__test__.json22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/specs/npm/es_module/__test__.json b/tests/specs/npm/es_module/__test__.json
deleted file mode 100644
index f720a2bc0..000000000
--- a/tests/specs/npm/es_module/__test__.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "base": "npm",
- "steps": [{
- "args": "run --allow-read --allow-env main.js",
- "output": "main.out"
- }, {
- "cleanDenoDir": true,
- "args": "test --allow-read --allow-env test.js",
- "output": "test.out"
- }, {
- "cleanDenoDir": true,
- "args": [
- "eval",
- "import chalk from 'npm:chalk@5'; console.log(chalk.green('chalk esm loads'));"
- ],
- "output": "main.out"
- }, {
- "args": "bundle --quiet main.js",
- "output": "bundle.out",
- "exitCode": 1
- }]
-}