Remove redundant NODE_ENV=test in Makefile (#5350)

`NODE_ENV=test` is exported by default. Therefore, targets that set `NODE_ENV` to `test` are cleaned up.
This commit is contained in:
Aaron Ang
2017-02-21 19:14:59 -08:00
committed by Henry Zhu
parent 2de4b08c51
commit 3a6d85e55e

View File

@@ -49,11 +49,11 @@ test-only:
test: lint test-only
test-ci:
NODE_ENV=test make bootstrap
make bootstrap
make test-only
test-ci-coverage:
NODE_ENV=test BABEL_ENV=cov make bootstrap
BABEL_ENV=cov make bootstrap
./scripts/test-cov.sh
./node_modules/.bin/codecov -f coverage/coverage-final.json