2021-04-09 06:55:45 +00:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
|
|
|
|
const fixtures = require('../common/fixtures');
|
2021-05-04 04:58:42 +00:00
|
|
|
const startCLI = require('../common/debugger');
|
2021-04-09 06:55:45 +00:00
|
|
|
|
|
|
|
const assert = require('assert');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
// Display and navigate backtrace.
|
|
|
|
{
|
2021-06-26 05:11:59 +00:00
|
|
|
const scriptFullPath = fixtures.path('debugger', 'backtrace.js');
|
2021-04-09 06:55:45 +00:00
|
|
|
const script = path.relative(process.cwd(), scriptFullPath);
|
2023-03-27 22:03:40 +00:00
|
|
|
const cli = startCLI(['--port=0', script]);
|
2021-04-09 06:55:45 +00:00
|
|
|
|
2022-09-29 09:15:22 +00:00
|
|
|
async function runTest() {
|
|
|
|
try {
|
|
|
|
await cli.waitForInitialBreak();
|
|
|
|
await cli.waitForPrompt();
|
|
|
|
await cli.stepCommand('c');
|
|
|
|
await cli.command('bt');
|
2021-04-09 06:55:45 +00:00
|
|
|
assert.ok(cli.output.includes(`#0 topFn ${script}:7:2`));
|
2022-09-29 09:15:22 +00:00
|
|
|
await cli.command('backtrace');
|
2021-04-09 06:55:45 +00:00
|
|
|
assert.ok(cli.output.includes(`#0 topFn ${script}:7:2`));
|
2022-09-29 09:15:22 +00:00
|
|
|
} finally {
|
|
|
|
await cli.quit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
runTest();
|
2021-04-09 06:55:45 +00:00
|
|
|
}
|