Yes
N/A
"testing"
I read through https://facebook.github.io/create-react-app/docs/running-tests
npx: installed 63 in 3.718s
Environment Info:
System:
OS: macOS Sierra 10.12.6
CPU: x64 Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
Binaries:
Node: 10.15.0 - ~/.nvm/versions/node/v10.15.0/bin/node
Yarn: 1.13.0 - /usr/local/bin/yarn
npm: 6.4.1 - ~/.nvm/versions/node/v10.15.0/bin/npm
Browsers:
Chrome: 71.0.3578.98
Safari: 12.0.2
npmPackages:
react: ^16.7.0 => 16.7.0
react-dom: ^16.7.0 => 16.7.0
react-scripts: Not Found
npmGlobalPackages:
create-react-app: Not Found
npx create-react-app .yarn testp to filter by a filename regex patternAppJest should show App.test.js as a match to what you just typed.
Here's the first thing you see when you type yarn test:

Here's the second thing you see when you type p and try to filter tests by the string App

There are no visual results. If you press enter, jest will run App.test.js but this autocomplete is not very helpful -- you can't see the results. For any large test suite, it defeats the purpose.
Here is an app I created with npx create-react-app .:
jest-no-typeahead.zip
yarn to install the dependenciesThis is just a simple configuration problem in Jest. Here's how to fix it:
yarn add --dev jest-watch-typeaheadpackage.json in the jest section: "watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
However, one must eject to do this because watchPlugins cannot be modified. Ejecting seems seems unnecessary for this simple feature.
Here is a working example app where I ran yarn eject and then applied the fixes mentioned above:
jest-typeahead.zip
Instructions:
yarn to install depsyarn test, type p, and follow the steps to reproduce up aboveAs you can see, typing the string App now shows visual results:

Hi @kumar303, thanks for raising this. Would you like to raise a PR to fix? If not, I'll open this to the community.
Waiting on https://github.com/jest-community/jest-watch-typeahead/pull/21 to be merged
Most helpful comment
Waiting on https://github.com/jest-community/jest-watch-typeahead/issues/20