Skip to content

Commit 3d65005

Browse files
committed
quic: ignore coverage for quic files
Since they aren't built by default Signed-off-by: James M Snell <jasnell@gmail.com>
1 parent e80b5d2 commit 3d65005

4 files changed

Lines changed: 24 additions & 0 deletions

File tree

lib/internal/quic/diagnostics.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
'use strict';
22

3+
// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
4+
// are still being developed.
5+
/* c8 ignore start */
6+
37
const dc = require('diagnostics_channel');
48

59
const onEndpointCreatedChannel = dc.channel('quic.endpoint.created');
@@ -69,3 +73,5 @@ module.exports = {
6973
onSessionErrorChannel,
7074
onEndpointConnectChannel,
7175
};
76+
77+
/* c8 ignore stop */

lib/internal/quic/state.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
'use strict';
22

3+
// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
4+
// are still being developed.
5+
/* c8 ignore start */
6+
37
const {
48
ArrayBuffer,
59
DataView,
@@ -806,3 +810,5 @@ module.exports = {
806810
QuicSessionState,
807811
QuicStreamState,
808812
};
813+
814+
/* c8 ignore stop */

lib/internal/quic/stats.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
'use strict';
22

3+
// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
4+
// are still being developed.
5+
/* c8 ignore start */
6+
37
const {
48
BigUint64Array,
59
JSONStringify,
@@ -743,3 +747,5 @@ module.exports = {
743747
QuicSessionStats,
744748
QuicStreamStats,
745749
};
750+
751+
/* c8 ignore stop */

lib/internal/quic/symbols.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
'use strict';
22

3+
// TODO(@jasnell) Temporarily ignoring c8 covrerage for this file while tests
4+
// are still being developed.
5+
/* c8 ignore start */
6+
37
const {
48
Symbol,
59
} = primordials;
@@ -92,3 +96,5 @@ module.exports = {
9296
kWantsHeaders,
9397
kWantsTrailers,
9498
};
99+
100+
/* c8 ignore stop */

0 commit comments

Comments
 (0)