* @param {Mocha.Test} test
(test)
| 182 | * @param {Mocha.Test} test |
| 183 | */ |
| 184 | started(test) { |
| 185 | // Only show feature name in workers mode (when outputProcess is set) |
| 186 | const featureName = outputProcess && test.parent?.title ? `${colors.cyan.bold(test.parent.title)} › ` : '' |
| 187 | print(` ${featureName}${colors.magenta.bold(test.title)}`) |
| 188 | }, |
| 189 | /** |
| 190 | * @param {Mocha.Test} test |
| 191 | */ |