-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
skip and only for exports ui #1073
Comments
+1 For something like this |
what about prefacing the property with exports['ONLY my cool test'] = function() {
} |
👍 though not sure on the format (while convenient, I don't like the use of a prefix in the property name). If limited to the suite level, it could be as follows: module.exports = {
'this suite will be skipped' : {
skip: true,
'test' : function () {}
},
'only this suite will be run' : {
only: true,
'test' : function () {}
}
} |
I am a bot that watches issues for inactivity. |
Oh man, I thought this was already a thing! 😮 |
I see in #524 is where
.skip()
and.only()
where added, and some of the comments were looking for ways that this could be used with the exports ui. The commit including them says "only tdd and bdd for now", but that's a year ago.Could strings of "comment" and "hashbang" be used for skip and only?
Or something? Anything? I much prefer exports ui, but I miss being able to use skip and only.
The text was updated successfully, but these errors were encountered: