diff --git a/test/parallel/test-bootstrap-modules.js b/test/parallel/test-bootstrap-modules.js index 446a1538ccc5b2..124e106067640f 100644 --- a/test/parallel/test-bootstrap-modules.js +++ b/test/parallel/test-bootstrap-modules.js @@ -161,6 +161,11 @@ if (process.features.inspector) { expected.beforePreExec.add('Internal Binding inspector'); expected.beforePreExec.add('NativeModule internal/util/inspector'); expected.atRunTime.add('NativeModule internal/inspector_async_hook'); + + // This is loaded if the test is run with NODE_V8_COVERAGE. + if (process.env.NODE_V8_COVERAGE) { + expected.atRunTime.add('Internal Binding profiler'); + } } const difference = (setA, setB) => {