Skip to content
Permalink
Browse files

test/style: use nyc instead of istanbul, npm audit fix

  • Loading branch information
nknapp committed Dec 14, 2019
1 parent 3a5b65e commit 1ebce2b53cb62d81954b64f48bc0bc7112395c8a
Showing with 905 additions and 265 deletions.
  1. +0 −2 .istanbul.yml
  2. +1 −1 Gruntfile.js
  3. +9 −0 nyc.config.js
  4. +873 −243 package-lock.json
  5. +2 −2 package.json
  6. +17 −0 spec/builtins.js
  7. +3 −17 tasks/test-mocha.js

This file was deleted.

@@ -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']);

@@ -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

This comment has been minimized.

Copy link

@mharde1771 mharde1771 commented on 1ebce2b Jan 12, 2020

Thank maybe

Please sign in to comment.
You can’t perform that action at this time.