Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/internal/quic/diagnostics.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
'use strict';

// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
// are still being developed.
/* c8 ignore start */

const dc = require('diagnostics_channel');

const onEndpointCreatedChannel = dc.channel('quic.endpoint.created');
Expand Down Expand Up @@ -69,3 +73,5 @@ module.exports = {
onSessionErrorChannel,
onEndpointConnectChannel,
};

/* c8 ignore stop */
6 changes: 6 additions & 0 deletions lib/internal/quic/state.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
'use strict';

// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
// are still being developed.
/* c8 ignore start */

const {
ArrayBuffer,
DataView,
Expand Down Expand Up @@ -806,3 +810,5 @@ module.exports = {
QuicSessionState,
QuicStreamState,
};

/* c8 ignore stop */
6 changes: 6 additions & 0 deletions lib/internal/quic/stats.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
'use strict';

// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
// are still being developed.
/* c8 ignore start */

const {
BigUint64Array,
JSONStringify,
Expand Down Expand Up @@ -743,3 +747,5 @@ module.exports = {
QuicSessionStats,
QuicStreamStats,
};

/* c8 ignore stop */
6 changes: 6 additions & 0 deletions lib/internal/quic/symbols.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
'use strict';

// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
// are still being developed.
/* c8 ignore start */

const {
Symbol,
} = primordials;
Expand Down Expand Up @@ -92,3 +96,5 @@ module.exports = {
kWantsHeaders,
kWantsTrailers,
};

/* c8 ignore stop */
Loading