* @param {Mocha.Test} test
(test)
| 210 | * @param {Mocha.Test} test |
| 211 | */ |
| 212 | skipped(test) { |
| 213 | // Only show feature name in workers mode (when outputProcess is set) |
| 214 | const featureName = outputProcess && test.parent?.title ? `${colors.gray(test.parent.title)} › ` : '' |
| 215 | const scenarioName = colors.bold(test.title) |
| 216 | print(` ${colors.yellow.bold('S')} ${featureName}${scenarioName}`) |
| 217 | }, |
| 218 | }, |
| 219 | |
| 220 | /** @namespace */ |