/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v20.20.1
test/sequential/test-debugger-debug-brk.js
21 строка
666 B
Joyee Cheung
process: move DEP0062 (node --debug) to end-of-life
02 фев 2019, 00:45
Не верифицирован
02 фев 2019, 00:45
fa5e097
Код
Авторство
О чём код?
'use strict'; const common = require('../common'); common.skipIfInspectorDisabled(); // This test ensures that the --debug-brk flag will exit the process const assert = require('assert'); const fixtures = require('../common/fixtures'); const { spawnSync } = require('child_process'); // File name here doesn't actually matter the process will exit on start. const script = fixtures.path('empty.js'); function test(arg) { const child = spawnSync(process.execPath, ['--inspect', arg, script]); const stderr = child.stderr.toString(); assert(stderr.includes('DEP0062')); assert.strictEqual(child.status, 9); } test('--debug-brk'); test('--debug-brk=5959');