Skip to content

Commit

Permalink
Merge d1937fd into b8e6b84
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusLongmuir committed Sep 18, 2020
2 parents b8e6b84 + d1937fd commit 6694145
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"watch": "npm run build -- --watch",
"test": "../node_modules/.bin/jest ./src --coverage",
"test:watch": "npm run test -- --watch",
"coveralls": "../node_modules/.bin/jest ./src --coverage --coverageReporters=text-lcov"
"coveralls": "../node_modules/.bin/jest ./src --coverage"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion ez-elements/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"watch": "npm run build -- --watch",
"test": "../node_modules/.bin/jest ./src --coverage",
"test:watch": "npm run test -- --watch",
"coveralls": "../node_modules/.bin/jest ./src --coverage --coverageReporters=text-lcov"
"coveralls": "../node_modules/.bin/jest ./src --coverage"
},
"author": "Marcus Longmuir",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion inputs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"watch": "npm run build -- --watch",
"test": "../node_modules/.bin/jest ./src --coverage",
"test:watch": "npm run test -- --watch",
"coveralls": "../node_modules/.bin/jest ./src --coverage --coverageReporters=text-lcov"
"coveralls": "../node_modules/.bin/jest ./src --coverage"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 5 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,9 @@ module.exports = {
"lines": 100,
"statements": 100
}
}
},
"coverageReporters": [
["lcov", {"projectRoot": "/"}],
"text-summary"
],
};
2 changes: 1 addition & 1 deletion jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"watch": "npm run build -- --watch",
"test": "../node_modules/.bin/jest ./src --coverage",
"test:watch": "npm run test -- --watch",
"coveralls": "../node_modules/.bin/jest ./src --coverage --coverageReporters=text-lcov"
"coveralls": "../node_modules/.bin/jest ./src --coverage"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"bootstrap": "lerna bootstrap",
"postbootstrap": "lerna run postbootstrap",
"clean": "lerna clean --yes --private && lerna run clean",
"coveralls": "lerna run coveralls | coveralls"
"coveralls": "lerna run coveralls && (cat **/coverage/lcov.info | coveralls)"
},
"author": "Marcus Longmuir",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion shadow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"watch": "npm run build -- --watch",
"test": "../node_modules/.bin/jest ./src --coverage",
"test:watch": "npm run test -- --watch",
"coveralls": "../node_modules/.bin/jest ./src --coverage --coverageReporters=text-lcov"
"coveralls": "../node_modules/.bin/jest ./src --coverage"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 6694145

Please sign in to comment.