github-pages-deploy-action/node_modules/@jest/test-result/build/ts3.4/helpers.d.ts

12 lines
660 B
TypeScript
Raw Normal View History

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