https://github.com/mrmurphy/mochahq
A GUI for easily running your mocha tests
https://github.com/mrmurphy/mochahq
Last synced: 7 months ago
JSON representation
A GUI for easily running your mocha tests
- Host: GitHub
- URL: https://github.com/mrmurphy/mochahq
- Owner: mrmurphy
- License: mit
- Created: 2016-04-15T15:11:48.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T22:24:10.000Z (almost 6 years ago)
- Last Synced: 2025-10-03T09:29:10.612Z (8 months ago)
- Language: Elm
- Size: 79.1 KB
- Stars: 17
- Watchers: 1
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RETIRED PROJECT
So sorry, this project is no longer maintained. Let me know if you'd like to take it over!
# Mocha HQ
A pleasant GUI interface for [Mocha](https://mochajs.org/)

If you don't love:
- Killing mocha and retyping `mocha -w -g ""` every time you want to change which test set is run
- Killing mocha and changing your '.only' call every time you want to change which test set is run
- Accidentally committing `.only`
- Clearing your terminal before re-running your test suite
You might like MochaHQ
It purposes to beautify and speed up the running of select mocha tests.
MochaHQ, when run in your project directory, will read your mocha.opts file,
and automatically read all mocha tests specified therein.
Those tests will be listed on the left sidebar, and allow you to easily run any of your
suites, or individual tests.
MochaHQ runs mocha in the background in `watch` mode, so your tests should automatically re-run when
you change a file. And the results should be sent to your browser right away.
When you change test suites, (or change the match pattern by hand), the background
Mocha process will be terminated, and a new process will be launched with the new pattern.
# Installation
`npm install -g mochahq`
# Usage
`cd ; mochahq`
MochaHQ will begin running, and the address on which it's serving will be
printed to the console.
## Changing the Port
If you want to change the port MochaHQ uses, just set the
`PORT` environment variable:
`PORT=8780 cd ; mochahq`
## Keybindings
The following keybindings are available:
```
h (or left arrow) - Display the parent test and its children in the sidebar
j (or down arrow) - Highlight the next test in the sidebar
k (or up arrow) - Highlight the previous test in the sidebar
l (or right arrow) - Display the children of the highlighted test in the sidebar
- Run the test that's highlighted in the sidebar
shift-j : Scroll the test results down
shift-k : Scroll the test results up
```
## Caveats
MochaHQ is currently only supported in Chrome. Pull requests for support in other
browsers are very welcome.