Skip to content

Instantly share code, notes, and snippets.

@obonyojimmy
Forked from hexsprite/.babelrc
Created January 23, 2019 04:10
Show Gist options
  • Save obonyojimmy/fcc1b07c283a8b49fbd1e95e1172a5c7 to your computer and use it in GitHub Desktop.
Save obonyojimmy/fcc1b07c283a8b49fbd1e95e1172a5c7 to your computer and use it in GitHub Desktop.
Using Istanbul wth Meteor
{
"env": {
"meteor:coverage": {
"plugins": ["istanbul"]
}
}
}
...
"babel-plugin-istanbul": "^4.1.4",
"nyc": "^11.2.1",
....
you'll need these if not others
#!/bin/bash
export TZ=UTC
export BABEL_ENV=meteor:coverage
NODE=`meteor node -e "process.stdout.write(process.execPath)"`
METEORJS=`meteor node -e "process.stdout.write(require('path').resolve(process.execPath, '../../../tools/index.js'))"`
node_modules/.bin/nyc $NODE $METEORJS $* test --full-app --settings test.json \
--raw-logs --once --driver-package meteortesting:mocha --port 9500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment