(arg)
| 11 | const script = fixtures.path('empty.js'); |
| 12 | |
| 13 | function test(arg) { |
| 14 | const child = spawnSync(process.execPath, ['--inspect', arg, script]); |
| 15 | const stderr = child.stderr.toString(); |
| 16 | assert(stderr.includes('DEP0062')); |
| 17 | assert.strictEqual(child.status, 9); |
| 18 | } |
| 19 | |
| 20 | test('--debug-brk'); |
| 21 | test('--debug-brk=5959'); |
no test coverage detected
searching dependent graphs…