1 | import type { Config } from '@jest/types';
|
2 | import { JestRunResult } from '../jest-run-result.js';
|
3 | export interface RunSettings {
|
4 | jestConfig: Config.InitialOptions;
|
5 | testNamePattern?: string;
|
6 | fileNamesUnderTest?: string[];
|
7 | testLocationInResults?: boolean;
|
8 | }
|
9 | export interface JestTestAdapter {
|
10 | run(settings: RunSettings): Promise<JestRunResult>;
|
11 | }
|
12 | //# sourceMappingURL=jest-test-adapter.d.ts.map |
\ | No newline at end of file |