Files
2026-04-07 14:50:23 +09:00

4 lines
289 B
TypeScript

import { TestResult } from './legacy';
import { Options, SupportedProjectTypes, TestOptions } from '../types';
export declare function runTest(projectType: SupportedProjectTypes | undefined, root: string, options: Options & TestOptions, featureFlags?: Set<string>): Promise<TestResult[]>;