mirror of
https://github.com/actions/labeler.git
synced 2025-12-19 00:26:47 +00:00
build
This commit is contained in:
12
node_modules/jest-runner/build/index.d.ts
generated
vendored
12
node_modules/jest-runner/build/index.d.ts
generated
vendored
@@ -5,15 +5,21 @@
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
import { Config } from '@jest/types';
|
||||
import { OnTestFailure, OnTestStart, OnTestSuccess, Test as JestTest, TestRunnerContext, TestRunnerOptions, TestWatcher } from './types';
|
||||
import { OnTestFailure as JestOnTestFailure, OnTestStart as JestOnTestStart, OnTestSuccess as JestOnTestSuccess, Test as JestTest, TestRunnerContext as JestTestRunnerContext, TestRunnerOptions as JestTestRunnerOptions, TestWatcher as JestTestWatcher } from './types';
|
||||
declare namespace TestRunner {
|
||||
type Test = JestTest;
|
||||
type OnTestFailure = JestOnTestFailure;
|
||||
type OnTestStart = JestOnTestStart;
|
||||
type OnTestSuccess = JestOnTestSuccess;
|
||||
type TestWatcher = JestTestWatcher;
|
||||
type TestRunnerContext = JestTestRunnerContext;
|
||||
type TestRunnerOptions = JestTestRunnerOptions;
|
||||
}
|
||||
declare class TestRunner {
|
||||
private _globalConfig;
|
||||
private _context;
|
||||
constructor(globalConfig: Config.GlobalConfig, context?: TestRunnerContext);
|
||||
runTests(tests: Array<JestTest>, watcher: TestWatcher, onStart: OnTestStart, onResult: OnTestSuccess, onFailure: OnTestFailure, options: TestRunnerOptions): Promise<void>;
|
||||
constructor(globalConfig: Config.GlobalConfig, context?: JestTestRunnerContext);
|
||||
runTests(tests: Array<JestTest>, watcher: JestTestWatcher, onStart: JestOnTestStart, onResult: JestOnTestSuccess, onFailure: JestOnTestFailure, options: JestTestRunnerOptions): Promise<void>;
|
||||
private _createInBandTestRun;
|
||||
private _createParallelTestRun;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user