UNPKG

vscode-extension-tester

Version:

ExTester is a package that is designed to help you run UI tests for your Visual Studio Code extensions using selenium-webdriver.

14 lines (13 loc) 433 B
/** * Manages collecting coverage data from test runs. All runs, regardless of * platform, expect coverage data given in the V8 coverage format. We then * use c8 to convert it to the common Istanbul format and represent it with * a variety of reporters. */ export declare class Coverage { readonly targetDir: string; private userOptions; constructor(); loadConfig(): Promise<void>; write(): Promise<void>; }