Skip to content

Commit

Permalink
Updated package.json to prevent run tests in coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
jgkim committed Dec 1, 2015
1 parent d4db892 commit 3cf06eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "mocha-gherkin",
"version": "0.1.13",
"version": "0.1.14",
"description": "mocha-gherkin is a Gherkin-style interface and reporter add-on for mocha.",
"keywords": [
"mocha",
Expand All @@ -22,9 +22,9 @@
"build": "gulp build",
"lint": "eslint .",
"pretest": "ln -sfn .. ./node_modules/mocha-gherkin",
"test": "mocha --opts tests/mocha.opts tests",
"test": "mocha --opts tests/mocha.opts tests/addition.feature.js",
"precover": "ln -sfn .. ./node_modules/mocha-gherkin",
"cover": "istanbul cover `npm bin`/_mocha -- --opts tests/mocha.opts tests",
"cover": "istanbul cover `npm bin`/_mocha -- --opts tests/mocha.opts tests/addition.feature.js",
"postcover": "remap-istanbul -i ./tests/coverage/coverage-final.json -o ./tests/coverage/lcov-remapped.info -t lcovonly",
"precoveralls": "npm run cover",
"coveralls": "cat ./tests/coverage/lcov-remapped.info | `npm bin`/coveralls",
Expand Down
1 change: 0 additions & 1 deletion tests/mocha.opts
Expand Up @@ -3,4 +3,3 @@
--reporter build/spec
--compilers js:babel-core/register
--timeout 500
--recursive

0 comments on commit 3cf06eb

Please sign in to comment.