-
Notifications
You must be signed in to change notification settings - Fork 32
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
Integration with mocha #28
Comments
Just a reminder that mocha isn't the only test runner out there... |
Of course, feel free to submit PR for yours :) ( and I'm not aware of others that can spawn test + debugger ) |
@sidorares have you gotten this to work with vanilla mocha? that's what i'm looking at now |
@delvarworld no, I haven't looked at this yet |
@delvarworld afaik you can start mocha tests with |
You can also debug the |
yes, I'm just thinking about best way on how to integrate this for mocha users which would require wery little configuration ( line in mocha.opts or something similar ) |
Instructions in the readme should be sufficient, in my opinion. require('node_modules/mocha/bin_mocha') Then use |
I often use cli debugger with mocha via
mocha debug test/foo/bar
. It would be great to havemocha vimdebug test/foo/bar
(if possible without modification to mocha, via mocha.opts + --require )The text was updated successfully, but these errors were encountered: