I'm using emacs to develop javascript (Node.js). Mocha for testing. I run mocha with make and here's my Makefile:
REPORTER=spec
MOCHA_OPTS=--ui bdd --timeout 2000 --colors
test:
@NODE_ENV=test \
./node_modules/mocha/bin/mocha \
--reporter $(REPORTER) \
$(MOCHA_OPTS) \
test/*.js
With emacs compile it runs the test nice but here's the output:
#Category API
[0G ✓ should create a category (378ms)
[0G ✓ should get category list (282ms)
[0G ✓ should get category (213ms)
[0G ✓ should verify category permissions (211ms)
[0G ✓ should edit category (454ms)
[0G ✓ should verify category (218ms)
[0G ✓ should remove category (242ms)
Is there any way to remove those ugly [0G from the output?