* Run a file from the projects root directory in a subprocess via launchTestProcess().
(absoluteName: string)
| 314 | * Run a file from the projects root directory in a subprocess via launchTestProcess(). |
| 315 | */ |
| 316 | function runInitializer(absoluteName: string): Promise<void> { |
| 317 | process.chdir(getGlobalVariable('projects-root')); |
| 318 | |
| 319 | return launchTestProcess(absoluteName); |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * Run a file from the main 'test-project' directory in a subprocess via launchTestProcess(). |
nothing calls this directly
no test coverage detected