Ankit Srivastava
Ankit Srivastava

Reputation: 11

Looking for Regex for testPathIgnorePatterns in jest config in package.json

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

Answers (1)

Ankit Srivastava
Ankit Srivastava

Reputation: 11

regex "/dist/(?!e2e/sfn)" works

Upvotes: 1

Related Questions