We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35507c5 commit e968d50Copy full SHA for e968d50
packages/test-harness/src/runAllTests.ts
@@ -72,7 +72,7 @@ async function runTestsInDir(
72
files.forEach((f) => mocha.addFile(path.resolve(testRoot, f)));
73
74
console.log(`Running tests in ${testRoot} for ${files.length} files`);
75
- console.log(process.argv);
+ console.log(JSON.stringify(process.argv, null, 2));
76
77
try {
78
// Run the mocha test
0 commit comments