-
jest-watch-typeahead是一款Jest watch插件,其功能是根据文件名或测试名来筛选测试
资源介绍
玩笑提前打字
按文件名或测试名称过滤测试
用法
安装
安装jest (它需要 Jest 26+)和jest-watch-typeahead
yarn add --dev jest jest-watch-typeahead
# or with NPM
npm install --save-dev jest jest-watch-typeahead
将它添加到你的 Jest 配置中
在你的package.json
{
" jest " : {
" watchPlugins " : [
" jest-watch-typeahead/filename " ,
" jest-watch-typeahead/testname "
]
}
}
或者在jest.config.js
module . exports = {
watchPlugin