-
Notifications
You must be signed in to change notification settings - Fork 79
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
Request for describe comments to be matched with -goblin.run regexp #105
Comments
I like this idea. Do we need a separate flag though? Why not just using the current I don't think we're breaking backwards compatibility here, but just allowing to target Describe blocks as it's |
@marcosnils |
I don't think this is a very big deal since the Would you like to open a PR so we can get this merged? One thing that I believe it's missing here is to keep recursing all the way up until Describe("Some", func() {
Describe("Little", func() {
Describe("Rabbit", func() {
It("jumps", func(){})
})
})
}) So the ultimate Additionally, does it make sense to concatenate the blocks with |
I'd like to see this but concatenated with spaces to match Mocha's |
I'd like to run particular group of tests described via Describe(), just for developing purposes when I want to debug entire group, so i would really appreciate a separate flag, e.g -goblin.runFullName with the following behavior:
The text was updated successfully, but these errors were encountered: