Sha256: 63a29ff94257e390bbb95cdae1e27621e0b2171f65bafe701fd6282f17ba405a
Contents?: true
Size: 939 Bytes
Versions: 6
Compression:
Stored size: 939 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. */ /// <reference types="node" /> import type { Test } from '@jest/test-result'; import type { Context } from 'jest-runtime'; import { PatternPrompt, Prompt, ScrollOptions } from 'jest-watcher'; import type SearchSource from './SearchSource'; declare type SearchSources = Array<{ context: Context; searchSource: SearchSource; }>; export default class TestPathPatternPrompt extends PatternPrompt { _searchSources?: SearchSources; constructor(pipe: NodeJS.WritableStream, prompt: Prompt); _onChange(pattern: string, options: ScrollOptions): void; _printPrompt(pattern: string): void; _getMatchedTests(pattern: string): Array<Test>; updateSearchSources(searchSources: SearchSources): void; } export {};
Version data entries
6 entries across 6 versions & 1 rubygems