Skip to content

Instantly share code, notes, and snippets.

@fatmatto
Created December 19, 2018 08:46
Show Gist options
  • Save fatmatto/06f39de481cf8167aba52691a5af0df0 to your computer and use it in GitHub Desktop.
Save fatmatto/06f39de481cf8167aba52691a5af0df0 to your computer and use it in GitHub Desktop.
test related portion of package json
{
"test": "NODE_ENV=development npx nyc --reporter=text mocha test/**/*.spec.js --check-coverage --lines 80 --exit",
"test-ci": "NODE_ENV=testing npx nyc --reporter=text mocha test/**/*.spec.js --check-coverage --lines 80 --exit",
"test:integration": "NODE_ENV=testing npx mocha test/integration-tests --exit",
"test:unit": "NODE_ENV=testing npx mocha test/unit --exit",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment