-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(spec-filter): allow custom specFilter #290
feat(spec-filter): allow custom specFilter #290
Conversation
@johnjbarton It has been more than a year, but here it is 😅 |
@johnjbarton do you think you can find time to take a look at this? It's an important feature for StrykerJS users |
@jginsburgn would you please be so kind to review this PR? It is actually breaking StrykerJS for karma-jasmine users (they experience false negatives on timeouts) |
Surely. Please resolve the conflicts! |
06e28f6
to
63f4649
Compare
@jginsburgn thanks in advance! Just resolved the conflicts |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Sorry that it took so long to review!
63f4649
to
a2f7626
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nicojs can you add some documentation in the README file?
@jginsburgn sorry I didn't catch that 2 months ago. Added a remark in the readme 📖 |
Allow users to define their own jasmine `specFilter`. ```js jasmine.getEnv().configure({ specFilter: function(spec) { // ... } }) ```
424ca6a
to
e416b1c
Compare
🎉 This PR is included in version 5.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Thanks @jginsburgn 😍 |
Allow users to define their own jasmine
specFilter
.Fixes #273