-
Notifications
You must be signed in to change notification settings - Fork 21
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
Param to skip test names when specified #25
Conversation
Thanks for this addition, could you also update the index.d.ts file please to add the new option? |
Added here as requested 😄 60624af |
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.
A small suggestion to make the type correct
index.d.ts
Outdated
/** | ||
* This parameter lets you define a list of test names to skip console checks for. | ||
*/ | ||
skipTestNames?: [] |
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.
skipTestNames?: [] | |
skipTestNames?: string[] |
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.
Whoops my bad, cc2bdc4 thanks for the suggestion!
Thanks for this contribution. This was released as https://github.com/ValentinH/jest-fail-on-console/releases/tag/v2.5.0 🎉 🚀 |
Allows specification of a
skipTestNames
parameter to skip test names from erroring out