https://github.com/marcbachmann/mocha-context-reporter
https://github.com/marcbachmann/mocha-context-reporter
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcbachmann/mocha-context-reporter
- Owner: marcbachmann
- Created: 2015-09-27T20:25:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:44:01.000Z (over 2 years ago)
- Last Synced: 2025-02-14T03:03:07.350Z (over 1 year ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# An extended mocha dot reporter

This reporter only works on node.
To get it to work correctly, you need to
- have grep on your system and have it in your PATH
- Enable full stack traces (to get error highlighting to work, pass --no-exit argument)
- Prevent mocha from using `process.exit` (pass --no-exit argument)
E.g.
```
mocha ./test -R mocha-context-reporter --full-trace --no-exit
```