@microsoft/vscodetestcover
Version:
A Mocha test runner with code coverage support for VS Code Azure Data Studio Extensions.
11 lines (10 loc) • 388 B
TypeScript
import * as Mocha from 'mocha';
export declare function configure(mochaOpts: Mocha.MochaOptions, testOpts: ITestCoverOptions): void;
export declare function run(testsRoot: string, clb: any): any;
export interface ITestCoverOptions {
/**
* Relative path to the coverage config file with configuration
* options for the test runner options.
*/
coverConfig: string;
}