Skip to content

Commit a22c4e0

Browse files
authored
feat: allow script wrapper length to be specified (bcoe#51)
1 parent 3679734 commit a22c4e0

File tree

6 files changed

+20
-13
lines changed

6 files changed

+20
-13
lines changed

bin/c8.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ function outputReport () {
2626
tempDirectory: argv.tempDirectory,
2727
watermarks: argv.watermarks,
2828
resolve: argv.resolve,
29-
omitRelative: argv.omitRelative
29+
omitRelative: argv.omitRelative,
30+
wrapperLength: argv.wrapperLength
3031
})
3132
}
3233

lib/parse-args.js

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ yargs()
3232
default: '',
3333
describe: 'resolve paths to alternate base directory'
3434
})
35+
.option('wrapper-length', {
36+
describe: 'how many bytes is the wrapper prefix on executed JavaScript',
37+
type: 'number'
38+
})
3539
.option('omit-relative', {
3640
default: true,
3741
type: 'boolean',

lib/report.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ class Report {
1515
tempDirectory,
1616
watermarks,
1717
resolve,
18-
omitRelative
18+
omitRelative,
19+
wrapperLength
1920
}) {
2021
this.reporter = reporter
2122
this.tempDirectory = tempDirectory
@@ -26,6 +27,7 @@ class Report {
2627
include: include
2728
})
2829
this.omitRelative = omitRelative
30+
this.wrapperLength = wrapperLength
2931
}
3032
run () {
3133
const map = this._getCoverageMapFromAllCoverageFiles()
@@ -49,7 +51,7 @@ class Report {
4951
for (const v8ScriptCov of v8ProcessCov.result) {
5052
try {
5153
const path = resolve(this.resolve, v8ScriptCov.url)
52-
const script = v8toIstanbul(path)
54+
const script = v8toIstanbul(path, this.wrapperLength)
5355
script.applyCoverage(v8ScriptCov.functions)
5456
map.merge(script.toIstanbul())
5557
} catch (err) {

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"rimraf": "^2.6.2",
4242
"test-exclude": "^5.0.0",
4343
"uuid": "^3.3.2",
44-
"v8-to-istanbul": "^1.2.0",
44+
"v8-to-istanbul": "^2.0.0",
4545
"yargs": "^12.0.2",
4646
"yargs-parser": "^10.1.0"
4747
},

test/integration.js.snap

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ second
88
--------------------|----------|----------|----------|----------|-------------------|
99
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
1010
--------------------|----------|----------|----------|----------|-------------------|
11-
All files | 95 | 72.22 | 0 | 95 | |
12-
bin | 87.76 | 62.5 | 100 | 87.76 | |
13-
c8.js | 87.76 | 62.5 | 100 | 87.76 | 35,39,46,47,48,49 |
14-
lib | 96.65 | 62.07 | 100 | 96.65 | |
15-
parse-args.js | 97.47 | 44.44 | 100 | 97.47 | 55,56 |
16-
report.js | 96.15 | 70 | 100 | 96.15 | 56,57,95,96,97 |
11+
All files | 95.11 | 72.22 | 0 | 95.11 | |
12+
bin | 88 | 62.5 | 100 | 88 | |
13+
c8.js | 88 | 62.5 | 100 | 88 | 36,40,47,48,49,50 |
14+
lib | 96.74 | 62.07 | 100 | 96.74 | |
15+
parse-args.js | 97.59 | 44.44 | 100 | 97.59 | 59,60 |
16+
report.js | 96.21 | 70 | 100 | 96.21 | 58,59,97,98,99 |
1717
test/fixtures | 95.16 | 94.12 | 0 | 95.16 | |
1818
async.js | 100 | 100 | 100 | 100 | |
1919
multiple-spawn.js | 100 | 100 | 100 | 100 | |

0 commit comments

Comments
 (0)