()
| 109 | } |
| 110 | |
| 111 | getWorkerContext(): Record<string, any> { |
| 112 | if (!this._suiteContexts.has(TestFixtures._workerContextSuite)) { |
| 113 | this._suiteContexts.set(TestFixtures._workerContextSuite, Object.create(null)) |
| 114 | } |
| 115 | return this._suiteContexts.get(TestFixtures._workerContextSuite)! |
| 116 | } |
| 117 | |
| 118 | private parseUserFixtures( |
| 119 | runner: VitestRunner, |
no test coverage detected