mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
21 lines
577 B
JavaScript
21 lines
577 B
JavaScript
|
'use strict';
|
||
|
require('../common');
|
||
|
const helper = require('./inspector-helper.js');
|
||
|
|
||
|
function shouldShutDown(session) {
|
||
|
session
|
||
|
.sendInspectorCommands([
|
||
|
{ 'method': 'Debugger.enable' },
|
||
|
{ 'method': 'Debugger.pause' },
|
||
|
])
|
||
|
.disconnect(true);
|
||
|
}
|
||
|
|
||
|
function runTests(harness) {
|
||
|
// 1 second wait to make sure the inferior began running the script
|
||
|
setTimeout(() => harness.runFrontendSession([shouldShutDown]).kill(), 1000);
|
||
|
}
|
||
|
|
||
|
const script = 'setInterval(() => {debugger;}, 60000);';
|
||
|
helper.startNodeForInspectorTest(runTests, '--inspect', script);
|