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 8292af1 commit 6b63c1bCopy full SHA for 6b63c1b
src/testRunner/parallel/worker.ts
@@ -137,14 +137,14 @@ namespace Harness.Parallel.Worker {
137
*/
138
function runTests(task: Task, fn: (payload: TaskResult) => void) {
139
if (task.runner === "unittest") {
140
- return runUnitTests(task, fn);
+ return executeUnitTests(task, fn);
141
}
142
else {
143
return runFileTests(task, fn);
144
145
146
147
- function runUnitTests(task: UnitTestTask, fn: (payload: TaskResult) => void) {
+ function executeUnitTests(task: UnitTestTask, fn: (payload: TaskResult) => void) {
148
if (!unitTestSuiteMap && unitTestSuite.suites.length) {
149
unitTestSuiteMap = ts.createMap<Mocha.Suite>();
150
for (const suite of unitTestSuite.suites) {
0 commit comments