You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This module is developed as part of Mochify which allows you to run tests
with a headless browser, on a Selenium grid, in the cloud with SauceLabs or
generates a standalone HTML page to run the tests. The underlying modules can
also be used as Browserify plugins.
browserify -p [ mocaccino OPTIONS ]
where OPTIONS are:
--reporter, -R Mocha reporter to use, defaults to "tap"
--grep Mocha grep option
--fgrep Mocha fgrep option
--invert Mocha invert option
--timeout, -t Mocha timeout in milliseconds to use, defaults to 2000
--ui, -U Mocha user interface to use, defaults to "bdd"
--yields, -y Yield every N milliseconds, defaults to 250
--node If result is used in node instead of a browser
--windowWidth Overrides the window width, defaults to the current shells
window width or fall back to 80
--no-colors Disable colors (overrides color support detection)
--colors Enable colors (overrides color support detection)
--mochaPath Path to custom Mocha module
The yields option causes a tiny delay every N milliseconds to allow pending
I/O to happen. It's ignored if --node is given.