We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I want only want to run my test if a specific condition is met (I'm not on company VPN).
Add a preFn to the Job interface that returns either boolean or Promise<boolean>
preFn
Job
boolean
Promise<boolean>
The text was updated successfully, but these errors were encountered:
Ya. Maybe preFn puts it into a SKIPPED state or something on fail?
Sorry, something went wrong.
No branches or pull requests
Problem
I want only want to run my test if a specific condition is met (I'm not on company VPN).
Potential Solution
Add a
preFn
to theJob
interface that returns eitherboolean
orPromise<boolean>
The text was updated successfully, but these errors were encountered: