run-test.d.ts 261 B

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