2020-03-31 20:42:07 +08:00
|
|
|
/**
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
2020-04-30 20:40:07 +08:00
|
|
|
import type { AggregatedResult, TestResult } from './types';
|
2020-03-31 20:42:07 +08:00
|
|
|
export declare const makeEmptyAggregatedTestResult: () => AggregatedResult;
|
2020-04-30 20:40:07 +08:00
|
|
|
export declare const buildFailureTestResult: (testPath: string, err: import("@jest/types/build/TestResult").SerializableError) => TestResult;
|
2020-03-31 20:42:07 +08:00
|
|
|
export declare const addResult: (aggregatedResults: AggregatedResult, testResult: TestResult) => void;
|
|
|
|
export declare const createEmptyTestResult: () => TestResult;
|