Sha256: 4441e06cf8e7ffff0519950e34df3608ca1016f09f83fdfb7f71ab7376ac5a47
Contents?: true
Size: 827 Bytes
Versions: 6
Compression:
Stored size: 827 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 } from '@jest/test-result'; import type { Config } from '@jest/types'; import BaseReporter from './BaseReporter'; import type { Context, TestSchedulerContext } from './types'; export default class NotifyReporter extends BaseReporter { private _notifier; private _startRun; private _globalConfig; private _context; static readonly filename: string; constructor(globalConfig: Config.GlobalConfig, startRun: (globalConfig: Config.GlobalConfig) => unknown, context: TestSchedulerContext); onRunComplete(contexts: Set<Context>, result: AggregatedResult): void; }
Version data entries
6 entries across 6 versions & 1 rubygems