Skip to content

Commit 04028ff

Browse files
committed
Force spec reporter for tests
That should be the default everywhere starting with v23. Previous versions use `tap` for non-TTY stdout, which I suspect applies to GitHub workflows.
1 parent b4a3d9c commit 04028ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
"scripts": {
4444
"create-patch": "node tools/create-patch.js",
4545
"curate": "node tools/prepare-curated.js ed curated && node tools/prepare-packages.js curated packages",
46-
"test": "node --test",
47-
"test-css": "node --test \"test/css/*.js\"",
48-
"test-elements": "node --test \"test/elements/*.js\"",
49-
"test-idl": "node --test \"test/idl/*.js\""
46+
"test": "node --test --test-reporter=spec",
47+
"test-css": "node --test --test-reporter=spec \"test/css/*.js\"",
48+
"test-elements": "node --test --test-reporter=spec \"test/elements/*.js\"",
49+
"test-idl": "node --test --test-reporter=spec \"test/idl/*.js\""
5050
}
5151
}

0 commit comments

Comments
 (0)