1// Flags: --expose-internals 2'use strict'; 3 4const common = require('../common'); 5 6if (process.features.inspector) { 7 common.skip('V8 inspector is enabled'); 8} 9 10const inspector = require('internal/util/inspector'); 11 12inspector.sendInspectorCommand( 13 common.mustNotCall('Inspector callback should not be called'), 14 common.mustCall(1), 15); 16