Closed
Description
What problem does this feature solve?
Jest lost it's typeahead mode due to some licensing problem. jestjs/jest#4931
This was a very useful feature for jest. Jest community later brought it back as a plugin https://github.com/jest-community/jest-watch-typeahead
It would be nice if vue-cli jest comes bundled with this plugin.
What does the proposed API look like?
it should be as simple as installing the plugin and adding
watchPlugins: [
'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname',
],
in the jest.config.js
file.
I can provide a PR for this is you like.