Skip to content

Commit

Permalink
test/style: use nyc instead of istanbul, npm audit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Dec 14, 2019
1 parent 3a5b65e commit 1ebce2b
Show file tree
Hide file tree
Showing 7 changed files with 905 additions and 265 deletions.
2 changes: 0 additions & 2 deletions .istanbul.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ module.exports = function(grunt) {

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

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

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

Expand Down
9 changes: 9 additions & 0 deletions nyc.config.js
Original file line number Diff line number Diff line change
@@ -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'
};

1 comment on commit 1ebce2b

@mharde1771
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank maybe

Please sign in to comment.