<img width="150" height="150" vspace="" hspace="25" src="https://cdn.worldvectorlogo.com/logos/jest.svg">
jest-plugin-filename
Filter your tests by filename
Usage
Install
Installjest
(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-filename
Add it to your Jest config
In yourpackage.json
{
"jest": {
"watchPlugins": ["jest-plugin-filename"]
}
}
Or in
jest.config.js
module.exports = {
watchPlugins: 'jest-plugin-filename',
};
Run Jest
yarn jest