We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 695c48d commit 44fdef5Copy full SHA for 44fdef5
index.js
@@ -13,6 +13,8 @@ class CoverageInstrumenter {
13
async startInstrumenting() {
14
this.session.connect();
15
16
+ await this.postSession('Debugger.enable');
17
+
18
await this.postSession('Profiler.enable');
19
20
await this.postSession('Profiler.startPreciseCoverage', {
@@ -30,6 +32,8 @@ class CoverageInstrumenter {
30
32
31
33
await this.postSession('Profiler.disable');
34
35
+ await this.postSession('Debugger.disable');
36
37
// When using networked filesystems on Windows, v8 sometimes returns URLs
38
// of the form file:////<host>/path. These URLs are not well understood
39
// by NodeJS (see https://github.com/nodejs/node/issues/48530).
0 commit comments