2021-04-08 23:55:45 -07:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
|
|
|
|
const fixtures = require('../common/fixtures');
|
2021-05-03 21:58:42 -07:00
|
|
|
const startCLI = require('../common/debugger');
|
2021-04-08 23:55:45 -07:00
|
|
|
|
|
|
|
const assert = require('assert');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
// Using sb before loading file.
|
2022-09-29 05:15:10 -04:00
|
|
|
|
|
|
|
const scriptFullPath = fixtures.path('debugger', 'cjs', 'index.js');
|
|
|
|
const script = path.relative(process.cwd(), scriptFullPath);
|
|
|
|
|
|
|
|
const otherScriptFullPath = fixtures.path('debugger', 'cjs', 'other.js');
|
|
|
|
const otherScript = path.relative(process.cwd(), otherScriptFullPath);
|
|
|
|
|
2023-03-28 00:03:40 +02:00
|
|
|
const cli = startCLI(['--port=0', script]);
|
2022-09-29 05:15:10 -04:00
|
|
|
|
|
|
|
(async () => {
|
|
|
|
await cli.waitForInitialBreak();
|
|
|
|
await cli.waitForPrompt();
|
|
|
|
await cli.command('sb("other.js", 2)');
|
|
|
|
assert.match(cli.output, /not loaded yet/,
|
|
|
|
'warns that the script was not loaded yet');
|
|
|
|
await cli.stepCommand('cont');
|
|
|
|
assert.ok(cli.output.includes(`break in ${otherScript}:2`),
|
|
|
|
'found breakpoint in file that was not loaded yet');
|
|
|
|
})()
|
|
|
|
.then(common.mustCall())
|
|
|
|
.finally(() => cli.quit());
|