UNPKG

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