meteor-mocha
meteor-mocha copied to clipboard
A Mocha test driver package for Meteor 1.3+. This package reports server AND client test results in the server console and can be used for running tests on a CI server or locally.
If I run tests in the browser, all console logs in the browser are somehow redirected to `browser-shim.js`, which forces the output to a simple string instead of a nicely...
During debugging, I find I often have to restart Meteor just to run a specific test again in order to follow along with it in the debugger. I tried `var...
I'm trying to set my client reporter to [mochawesome](https://www.npmjs.com/package/mochawesome). To do so, I've modified my run script to: ` TEST_WATCH=1 CLIENT_TEST_REPORTER="mochawesome" meteor test --driver-package meteortesting:mocha --port 3002 `. Server tests...
Steps to reproduce: - `meteor create app` (version 1.6.1) - `meteor add meteortesting:mocha` - `meteor npm i --save-dev selenium-webdriver chromedriver` ``` $ TEST_BROWSER_DRIVER=chrome meteor test --once --driver-package meteortesting:mocha [[[[[ Tests...
Hi, When running this command: `TEST_BROWSER_DRIVER=chrome TEST_WATCH=1 meteor test-packages ./packages/* --driver-package meteortesting:mocha --raw-logs`, I get the error below. This seems to be a config issue when setting up the Chrome...
Can we add same web reporter for server tests as we do for client tests? It will be super convenient to run subset of tests from Web UI.
I like how in `jest` after your tests are executed you have the option to re-run the suite, or just re-run failed tests. What would be truly helpful is have...
This package should have it's own tests and run on CI. The irony is that it's very hard to test the test-drivers. The easiest option may be having a blank...
Hi guys, I found that my test-suite runs much slower using this package (SERVER-side ONLY tests) than running them with `practicalmeteor:mocha`. It is NOT only this package - I have...
Issue here: https://github.com/DispatchMe/meteor-mocha/issues/11