* Add code coverage from Babel tests * Configure nyc correctly for Babel test coverage * Guard against nyc config conflicts if Babel switches to nyc in the future * Move .nyc_output from Babel build dir to root
24 lines
990 B
Makefile
24 lines
990 B
Makefile
MAKEFLAGS = -j1
|
|
|
|
export NODE_ENV = test
|
|
|
|
.PHONY: make clean test test-only test-cov test-clean test-travis publish build bootstrap publish-core publish-runtime build-website build-core watch-core build-core-test clean-core prepublish
|
|
|
|
clean: ; rm -rf ./build
|
|
|
|
bootstrap-babel: clean
|
|
mkdir ./build
|
|
git clone --depth=1 --branch=master https://github.com/babel/babel.git ./build/babel
|
|
cd ./build/babel; \
|
|
make bootstrap
|
|
find ./build/babel/packages -type d -name 'babylon' -prune -exec rm -rf '{}' \; -exec ln -s '../../../../../' '{}' \;
|
|
|
|
test-babel:
|
|
BABEL_ENV=test npm run build
|
|
# in case babel ever switches to nyc: filter its config out of package.json
|
|
cd ./build/babel; \
|
|
jq "del(.nyc)" package.json > package.nonyc.json; \
|
|
mv -f package.nonyc.json package.json; \
|
|
../../node_modules/.bin/nyc --no-instrument --no-source-map --report-dir ../../coverage node_modules/mocha/bin/_mocha `scripts/_get-test-directories.sh` --opts test/mocha.opts; \
|
|
mv .nyc_output ../../.nyc_output
|