Reputation: 149
I'm using src_folders
with filter to skip others .js files that don't match my patterns but he is skipping patterns files also:
Error: No tests defined! using source folder: test_fixtures
- using path filter: /*-spec.js
Upvotes: 1
Views: 398
Reputation: 26
"src_folders" : ["test_fixtures"],
and
"filter": "**/*-spec.js",
works for me. Now i get all files located in test_fixtures/**/*-spec.js
Upvotes: 1