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 8a16159 commit e7d6f03Copy full SHA for e7d6f03
packages/test-harness/src/runAllTests.ts
@@ -71,6 +71,9 @@ async function runTestsInDir(
71
// Add files to the test suite
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);
76
+
77
try {
78
// Run the mocha test
79
await new Promise<void>((resolve, reject) => {
0 commit comments