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.
10 lines (9 loc) • 595 B
TypeScript
declare function vscodeBefore(fn: Function): void;
declare function vscodeBefore(name: string, fn: Function): void;
declare function vscodeBeforeEach(fn: Function): void;
declare function vscodeBeforeEach(name: string, fn: Function): void;
declare function vscodeAfter(fn: Function): void;
declare function vscodeAfter(name: string, fn: Function): void;
declare function vscodeAfterEach(fn: Function): void;
declare function vscodeAfterEach(name: string, fn: Function): void;
export { vscodeBefore as before, vscodeBeforeEach as beforeEach, vscodeAfter as after, vscodeAfterEach as afterEach };