node/test/sequential/test-debugger-auto-resume.js
Rich Trott 7b026d8a72
test: move inspector-cli tests to sequential
There's no reason to keep these tests separated from everything else.

PR-URL: https://github.com/nodejs/node/pull/39079
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2021-06-21 11:08:09 -04:00

36 lines
918 B
JavaScript

'use strict';
const common = require('../common');
common.skipIfInspectorDisabled();
const fixtures = require('../common/fixtures');
const startCLI = require('../common/debugger');
const { addLibraryPath } = require('../common/shared-lib-util');
const assert = require('assert');
const path = require('path');
addLibraryPath(process.env);
// Auto-resume on start if the environment variable is defined.
{
const scriptFullPath = fixtures.path('inspector-cli', 'break.js');
const script = path.relative(process.cwd(), scriptFullPath);
const env = { ...process.env };
env.NODE_INSPECT_RESUME_ON_START = '1';
const cli = startCLI([script], [], { env });
cli.waitForInitialBreak()
.then(() => {
assert.deepStrictEqual(
cli.breakInfo,
{ filename: script, line: 10 },
);
})
.then(() => cli.quit())
.then((code) => {
assert.strictEqual(code, 0);
});
}