Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .istanbul.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
check:
global:
statements: 100
lines: 100
branches: 100
functions: 100
excludes: []
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Sample project for demo of running istanbul with mocha using custom compilers",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha -- --compilers js:babel-core/register test/"
"test": "istanbul cover _mocha -- --compilers js:babel-core/register test/",
"posttest": "istanbul check-coverage"
},
"repository": {
"type": "git",
Expand All @@ -25,6 +26,7 @@
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"istanbul": "^1.0.0-alpha.2",
"istanbul-api": "^1.0.0-alpha.10",
"mocha": "^2.3.4"
}
}