diff --git a/lib/internal/quic/diagnostics.js b/lib/internal/quic/diagnostics.js index 7e11de4ef36ae1..68ff078af3955b 100644 --- a/lib/internal/quic/diagnostics.js +++ b/lib/internal/quic/diagnostics.js @@ -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'); @@ -69,3 +73,5 @@ module.exports = { onSessionErrorChannel, onEndpointConnectChannel, }; + +/* c8 ignore stop */ diff --git a/lib/internal/quic/state.js b/lib/internal/quic/state.js index 1bca0b6619bc3e..efaccb4aa00527 100644 --- a/lib/internal/quic/state.js +++ b/lib/internal/quic/state.js @@ -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, @@ -806,3 +810,5 @@ module.exports = { QuicSessionState, QuicStreamState, }; + +/* c8 ignore stop */ diff --git a/lib/internal/quic/stats.js b/lib/internal/quic/stats.js index 1c64b7c8227f68..280cf5a26f419b 100644 --- a/lib/internal/quic/stats.js +++ b/lib/internal/quic/stats.js @@ -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, @@ -743,3 +747,5 @@ module.exports = { QuicSessionStats, QuicStreamStats, }; + +/* c8 ignore stop */ diff --git a/lib/internal/quic/symbols.js b/lib/internal/quic/symbols.js index 973db27bc7cae9..9a8e9155f0b636 100644 --- a/lib/internal/quic/symbols.js +++ b/lib/internal/quic/symbols.js @@ -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; @@ -92,3 +96,5 @@ module.exports = { kWantsHeaders, kWantsTrailers, }; + +/* c8 ignore stop */