This commit is contained in:
Simon Knott 2024-07-24 15:19:08 +02:00
parent c91551249b
commit 66f8b209fc
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -108,7 +108,7 @@ export class Runner {
return status; return status;
} }
async loadAllTests(mode: 'in-process' | 'out-of-process' = 'in-process', options: { populatePluginDependencies?: boolean }): Promise<{ status: FullResult['status'], suite?: Suite, errors: TestError[] }> { async loadAllTests(mode: 'in-process' | 'out-of-process' = 'in-process', options: { populatePluginDependencies?: boolean } = {}): Promise<{ status: FullResult['status'], suite?: Suite, errors: TestError[] }> {
const config = this._config; const config = this._config;
const errors: TestError[] = []; const errors: TestError[] = [];
const reporters = [wrapReporterAsV2({ const reporters = [wrapReporterAsV2({