- +0 −2 .istanbul.yml
- +1 −1 Gruntfile.js
- +9 −0 nyc.config.js
- +873 −243 package-lock.json
- +2 −2 package.json
- +17 −0 spec/builtins.js
- +3 −17 tasks/test-mocha.js
| @@ -0,0 +1,9 @@ | ||
| module.exports = { | ||
| 'check-coverage': true, | ||
| branches: 100, | ||
| lines: 100, | ||
| functions: 100, | ||
| statements: 100, | ||
| exclude: ['**/spec/**', '**/handlebars/compiler/parser.js'], | ||
| reporter: 'html' | ||
| }; |
This comment has been minimized.
1ebce2bThank maybe