Sha256: b3e2210d95e351b666e0fbe966d17a3ff3e328d23989e592d53e0ed971b5137a
Contents?: true
Size: 738 Bytes
Versions: 6
Compression:
Stored size: 738 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 { Config } from '@jest/types'; import { BaseWatchPlugin, JestHookSubscriber, UpdateConfigCallback, UsageData } from 'jest-watcher'; export default class FailedTestsInteractivePlugin extends BaseWatchPlugin { private _failedTestAssertions?; private readonly _manager; apply(hooks: JestHookSubscriber): void; getUsageInfo(): UsageData | null; onKey(key: string): void; run(_: Config.GlobalConfig, updateConfigAndRun: UpdateConfigCallback): Promise<void>; private getFailedTestAssertions; }
Version data entries
6 entries across 6 versions & 1 rubygems