I am looking to convert from Jasmine tests to Mocha tests because of its ability to do Before(all), its reporting capabilities, and its support for coffeescript.
One thing I haven't been able to find is whether Mocha (or in conjunction with a compatible assertion library) supports fixtures like jasmine-jquery does (https://github.com/velesin/jasmine-jquery). Does such functionality exist for Mocha?
I'm trying to test some in-browser code (so I will be running it with the html test runner) that manipulates the DOM. I don't wish to use zombiejs because I'd prefer to run it within the environment I'm testing in.
Edit: Just for reference, while searching for a solution, I came across using grunt + mocha with a phantomjs implementation. This also doesn't work for my case as I'd like to use a custom version of webkit.