Sha256: 7a89d77bf137521a06ff5b3ce7297c663f3c27912b09320fa520c1b2d6bab9e5

Contents?: true

Size: 968 Bytes

Versions: 6

Compression:

Stored size: 968 Bytes

Contents

/**
 * 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.
 */
import type { AggregatedResult, TestCaseResult, TestResult } from '@jest/test-result';
import type { Context, Reporter, ReporterOnStartOptions, Test } from './types';
export default class BaseReporter implements Reporter {
    private _error?;
    log(message: string): void;
    onRunStart(_results?: AggregatedResult, _options?: ReporterOnStartOptions): void;
    onTestCaseResult(_test: Test, _testCaseResult: TestCaseResult): void;
    onTestResult(_test?: Test, _testResult?: TestResult, _results?: AggregatedResult): void;
    onTestStart(_test?: Test): void;
    onRunComplete(_contexts?: Set<Context>, _aggregatedResults?: AggregatedResult): Promise<void> | void;
    protected _setError(error: Error): void;
    getLastError(): Error | undefined;
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-0.27.1 packages/webpacker/node_modules/@jest/reporters/build/BaseReporter.d.ts
decidim-0.26.4 packages/webpacker/node_modules/@jest/reporters/build/BaseReporter.d.ts
decidim-0.27.0 packages/webpacker/node_modules/@jest/reporters/build/BaseReporter.d.ts
decidim-0.26.3 packages/webpacker/node_modules/@jest/reporters/build/BaseReporter.d.ts
decidim-0.27.0.rc2 packages/webpacker/node_modules/@jest/reporters/build/BaseReporter.d.ts
decidim-0.27.0.rc1 packages/webpacker/node_modules/@jest/reporters/build/BaseReporter.d.ts