Questions tagged [minmatch]

2 questions
8
votes
5 answers

Excluding files from coverage when using Karma and Istanbul

I am using Karma to test my JavaScript and get coverage reports. I am using the Istanbul coverage report, which is the default. Here is my preprocessors parameter: preprocessors: { 'framework/**/*.js':'coverage', …
Joe
  • 7,922
  • 18
  • 54
  • 83
0
votes
1 answer

Match all files, except ones with specific extensions

How can I fix ./src/js/**/!(*.spec.js|*.test.js), so it doesn't return directories? I've tried it like this ./src/js/**/*.!(spec.js|test.js), but it matches all files except the directories, the same as ./src/js/**/*. Example output of…
emanuilov
  • 122
  • 1
  • 10