Maximilian Antoni
Maximilian Antoni
Regarding peer dependencies, I have previously used them with multiple major versions, like `^1.0.0 || ^2.0.0`. If one of the other dependencies requires v1, that is installed. If v2 is...
@m90 That is correct.
Mochify is structured relatively modular now. I’m developing towards the goal of having every feature being a thing that is added to the Browserify pipeline. Eventually projects like min-wd and...
Thank you for investigating. I'm currently too busy with other things. It would be great to support Firefox. But if it's too brittle, it can wait, I think. I'm not...
I think this would require a change in mocaccino, just like [the change for custom reporters](https://github.com/mantoni/mocaccino.js/pull/12). A pull request would be most welcome 😉
Yes, I would like to support that :+1: The way I would prefer it work is a new option in the [min-webdriver](https://github.com/mantoni/min-webdriver) API, maybe `closeOnFailure: true`. The default should be...
Now that this is supported by `min-webdriver`, there could be an API enhanceent and a command line option in Mochify that sets both values to `false`. This would allow users...
Interesting case. This is currently not possible. A workaround would be to have multiple webdriver config files and run mochify multiple times, specifying the file with `--wd-file `. If you...
Yes, I'm seeing this occasionally as well. Not sure it has something to do with the async test case. Can you try and run the tests as a website with...
I suppose this happens because errors in async functions are caught with the window `"error"` event. Mocha then associates the error with the currently running test. Unfortunately, browsers treat these...