私はこの例に従っています:http://brianstoner.com/blog/testing-in-nodejs-with-mocha/
ルートディレクトリにMakefileを定義しました。
REPORTER = dot
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
test-w:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--watch
.PHONY: test test-w
しかし、「make test」を実行すると、「make:「test」に対して何も実行されません」と表示されます。