jest-plugin-filename
v0.0.1
Published
Jest plugin for filtering by filename
Readme
Usage
Install
Install jest(it needs Jest 23+) and jest-plugin-filename
yarn add --dev jest jest-plugin-filename
# or with NPM
npm install --save-dev jest jest-plugin-filenameAdd it to your Jest config
In your package.json
{
"jest": {
"watchPlugins": ["jest-plugin-filename"]
}
}Or in jest.config.js
module.exports = {
watchPlugins: 'jest-plugin-filename',
};Run Jest
yarn jest