mirror of https://github.com/nodejs/node.git
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
common.skipIfInspectorDisabled();
|
|
const helper = require('./inspector-helper.js');
|
|
|
|
function testStop(harness) {
|
|
harness.expectShutDown(42);
|
|
}
|
|
|
|
helper.startNodeForInspectorTest(testStop, '--inspect',
|
|
'process._debugEnd();process.exit(42);');
|