In my package.json, I have a regex to process only the files that contain '.integration.'
The command is the following:
"test:integration": "jest .*\\.integration\\..*"
How can I select files that DON'T contain '.integration.' ?
Maybe, an expression similar to,
^(?!.*\\.integration\\.).*$
might be somewhat close, not sure though.