()
| 228 | runTests: (files, invalidates) => executeTests('run', files, invalidates), |
| 229 | collectTests: (files, invalidates) => executeTests('collect', files, invalidates), |
| 230 | async close() { |
| 231 | await Promise.all([ |
| 232 | pool.close(), |
| 233 | browserPool?.close?.(), |
| 234 | ...ctx.projects.map(project => project.typechecker?.stop()), |
| 235 | ]) |
| 236 | }, |
| 237 | } |
| 238 | } |
| 239 |