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