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? 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
I've got a handful of tests I can't run in CI. Some I can only run in Windows, etc.
Proposed sytax:
test.skipIf(isCI).skipIf(!isWindows)('test title', t => { })
The text was updated successfully, but these errors were encountered:
Hi @jamestalmage!
With #2435 I started tinkering with a "forkable test interface". So you could do something like:
const windowsOnly = test.make({ if: () => isWindows }) windowsOnly('test title', t => {})
Ultimately I think that's more versatile than adding lots of hooks to the regular test interface. What do you think?
(I'm closing this issue for housekeeping purposes, but let's keep the conversation going.)
Sorry, something went wrong.
No branches or pull requests
I've got a handful of tests I can't run in CI. Some I can only run in Windows, etc.
Proposed sytax:
The text was updated successfully, but these errors were encountered: