UNPKG

204 BPlain TextView Raw
1import type { Config } from '@jest/types';
2import type { AggregatedResult } from '@jest/test-result';
3
4export interface JestRunResult {
5 results: AggregatedResult;
6 globalConfig: Config.GlobalConfig;
7}