Add typings for test runner scripts (#169196)

This commit is contained in:
Matt Bierner
2022-12-14 17:19:24 -08:00
committed by GitHub
parent 922a3b5398
commit 57dd298b47
10 changed files with 35 additions and 25 deletions

View 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;