(file: File)
| 102 | } |
| 103 | |
| 104 | getFileContext(file: File): Record<string, any> { |
| 105 | if (!this._suiteContexts.has(file)) { |
| 106 | this._suiteContexts.set(file, Object.create(null)) |
| 107 | } |
| 108 | return this._suiteContexts.get(file)! |
| 109 | } |
| 110 | |
| 111 | getWorkerContext(): Record<string, any> { |
| 112 | if (!this._suiteContexts.has(TestFixtures._workerContextSuite)) { |
no test coverage detected