mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 21:52:59 +00:00
Add typings for test runner scripts (#169196)
This commit is contained in:
10
test/integration/electron/testrunner.d.ts
vendored
Normal file
10
test/integration/electron/testrunner.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { MochaOptions } from 'mocha';
|
||||
|
||||
export function configure(opts: MochaOptions): void;
|
||||
|
||||
export function run(testsRoot: string[], clb: (error: Error | undefined, failures: number | undefined) => void): void;
|
||||
Reference in New Issue
Block a user