Skip to content

Commit 1ebce2b

Browse files
committed
test/style: use nyc instead of istanbul, npm audit fix
1 parent 3a5b65e commit 1ebce2b

File tree

7 files changed

+905
-265
lines changed

7 files changed

+905
-265
lines changed

.istanbul.yml

-2
This file was deleted.

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ module.exports = function(grunt) {
263263

264264
this.registerTask('amd', ['babel:amd', 'requirejs']);
265265

266-
this.registerTask('test', ['test:bin', 'test:cov', 'test:check-cov']);
266+
this.registerTask('test', ['test:bin', 'test:cov']);
267267

268268
grunt.registerTask('bench', ['metrics']);
269269

nyc.config.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
'check-coverage': true,
3+
branches: 100,
4+
lines: 100,
5+
functions: 100,
6+
statements: 100,
7+
exclude: ['**/spec/**', '**/handlebars/compiler/parser.js'],
8+
reporter: 'html'
9+
};

0 commit comments

Comments
 (0)