Skip to content

Commit

Permalink
remove useless v8-json
Browse files Browse the repository at this point in the history
  • Loading branch information
cenfun committed Aug 3, 2024
1 parent c68a3db commit a06067e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion test/generate-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const generate = async () => {
const coverageOptions = {
// logging: 'debug',
// watermarks: [60, 90],
reports: ['v8', 'v8-json'],
reports: ['v8'],

name: 'My V8 Node env Coverage Report',
assetsPath: '../assets',
Expand Down
1 change: 1 addition & 0 deletions test/mcr.config.mcr.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module.exports = {

reports: [
'v8',
'v8-json',
'console-summary',
'codecov',
['markdown-summary', {
Expand Down
2 changes: 1 addition & 1 deletion test/test-node-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const dir = process.env.NODE_V8_COVERAGE;
const coverageOptions = {
// logging: 'debug',
// watermarks: [60, 90],
reports: ['v8', 'v8-json'],
reports: ['v8'],

name: 'My V8 Node api Coverage Report',
assetsPath: '../assets',
Expand Down
2 changes: 1 addition & 1 deletion test/test-node-cdp.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const checkSnapshot = require('./check-snapshot.js');
const coverageOptions = {
// logging: 'debug',
// watermarks: [60, 90],
reports: ['v8', 'v8-json'],
reports: ['v8'],

name: 'My V8 Node cdp Coverage Report',
assetsPath: '../assets',
Expand Down
2 changes: 1 addition & 1 deletion test/test-node-ins.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const checkSnapshot = require('./check-snapshot.js');
const coverageOptions = {
// logging: 'debug',
// watermarks: [60, 90],
reports: ['v8', 'v8-json'],
reports: ['v8'],

name: 'My V8 Node ins Coverage Report',
assetsPath: '../assets',
Expand Down
2 changes: 1 addition & 1 deletion test/test-node-koa.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const checkSnapshot = require('./check-snapshot.js');
const coverageOptions = {
// logging: 'debug',
// watermarks: [60, 90],
reports: ['v8', 'v8-json'],
reports: ['v8'],

name: 'My Koa Coverage Report',
assetsPath: '../assets',
Expand Down
3 changes: 1 addition & 2 deletions test/test-puppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ const coverageOptions = {
}],
['v8', {
// metrics: ['bytes', 'functions', 'lines']
}],
'v8-json'
}]
],

name: 'My Puppeteer Coverage Report',
Expand Down

0 comments on commit a06067e

Please sign in to comment.