( globalConfig: Config.GlobalConfig, context: TestSchedulerContext, )
| 83 | export type TestSchedulerContext = ReporterContext & TestRunnerContext; |
| 84 | |
| 85 | export async function createTestScheduler( |
| 86 | globalConfig: Config.GlobalConfig, |
| 87 | context: TestSchedulerContext, |
| 88 | ): Promise<TestScheduler> { |
| 89 | return new TestScheduler(globalConfig, context); |
| 90 | } |
| 91 | |
| 92 | class TestScheduler { |
| 93 | private readonly _context: TestSchedulerContext; |
no outgoing calls