run only one test feature
yanhick opened this issue · 2 comments
I'm writing more tests with buddy at the moment and like it a lot !
One useful feature that I use in mocha is the "only" function, described here:
http://mochajs.org/#exclusive-tests
This allows to focus on only one test or test suite while debugging.
If you think it can make a good addition, I can try implementing it.
Thanks
Hey :) I think that can be accomplished with the @include
metadata. I'm
think it works only on describe
, not on it
, but should be quite close:
https://github.com/ciscoheat/buddy#including-and-excluding-tests
2015-07-28 17:52 GMT+02:00 Yannick Dominguez notifications@github.com:
I'm writing more tests with buddy at the moment and like it a lot !
One useful feature that I use in mocha is the "only" function, described
here:
http://mochajs.org/#exclusive-testsThis allows to focus on only one test or test suite while debugging.
If you think it can make a good addition, I can try implementing it.Thanks
—
Reply to this email directly or view it on GitHub
#39.
Thanks, sorry I missed that part of the readme, this is what I was looking for !