UNPKG

snyk

Version:

snyk library and cli utility

8 lines (7 loc) 469 B
import { Options } from '../types'; import { TestCommandResult } from '../../cli/commands/types'; import { Ecosystem, ScanResult, TestResult } from './types'; export declare function testEcosystem(ecosystem: Ecosystem, paths: string[], options: Options): Promise<TestCommandResult>; export declare function selectAndExecuteTestStrategy(ecosystem: Ecosystem, scanResultsByPath: { [dir: string]: ScanResult[]; }, options: Options): Promise<[TestResult[], string[]]>;