UNPKG

657 BTypeScriptView Raw
1import { SrcIfc, Options, CompilerConfiguration } from './types';
2/**
3 * @dev Run tests from source of a test contract file (used for IDE)
4 * @param contractSources Sources of contract
5 * @param compilerConfig current compiler configuration
6 * @param testCallback Test callback
7 * @param resultCallback Result Callback
8 * @param finalCallback Final Callback
9 * @param importFileCb Import file callback
10 * @param opts Options
11 */
12export declare function runTestSources(contractSources: SrcIfc, compilerConfig: CompilerConfiguration, testCallback: Function, resultCallback: Function, finalCallback: any, importFileCb: Function, opts: Options): Promise<void>;