-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Pending tests? #567
Comments
it("...", []() {}) I guess? |
Not precisely the same thing but if you write a test case (or section) that has no assertions you can get Catch to warn you about them.... Do either of those possibilities fit the bill? |
I think it'll work. Not exactly a pretty solution though ;) |
Is there a way to have pending tests, as in, to "prototype" tests?
In Jasmine, I usually can do:
and since the call to
it()
didnt get a function, its a pending test.Is it possible to have that with Catch?
The text was updated successfully, but these errors were encountered: