* @param {Number} workerIndex - Unique ID for worker
(workerIndex)
| 211 | * @param {Number} workerIndex - Unique ID for worker |
| 212 | */ |
| 213 | constructor(workerIndex) { |
| 214 | this.workerIndex = workerIndex |
| 215 | this.options = {} |
| 216 | this.tests = [] |
| 217 | this.testRoot = getTestRoot() |
| 218 | } |
| 219 | |
| 220 | addConfig(config) { |
| 221 | const oldConfig = JSON.parse(this.options.override || '{}') |
nothing calls this directly
no test coverage detected