UNPKG

431 BTypeScriptView Raw
1import { Options } from './types';
2import Web3 from 'web3';
3/**
4 * @dev run test contract files (used for CLI)
5 * @param filepath Path of file
6 * @param isDirectory True, if path is a directory
7 * @param web3 Web3
8 * @param finalCallback optional callback to run finally
9 * @param opts Options
10 */
11export declare function runTestFiles(filepath: string, isDirectory: boolean, web3: Web3, finalCallback?: any, opts?: Options): void;