Reputation: 11
Below is folder structure I have
dist
In my package.json jest testPathIgnorePatterns I want to add everything inside dist except e2e/sfn/*.test.js
I am trying various regex but they do not work anymore.
Upvotes: 0
Views: 381
regex "/dist/(?!e2e/sfn)" works
Upvotes: 1