mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
812e236df9
Before ``` ❯ tools/test.py "sequential/test-debugger*" [00:25|% 100|+ 32|- 0]: Done All tests passed. ❯ tools/test.py -J "parallel/test-debugger*" [00:05|% 100|+ 6|- 0]: Done All tests passed. ``` After ``` ❯ tools/test.py "sequential/test-debugger*" [00:06|% 100|+ 5|- 0]: Done All tests passed. ❯ tools/test.py -J "parallel/test-debugger*" [00:05|% 100|+ 33|- 0]: Done All tests passed. ``` PR-URL: https://github.com/nodejs/node/pull/47274 Refs: https://github.com/nodejs/node/issues/47146 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
43 lines
1.5 KiB
JavaScript
43 lines
1.5 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
const startCLI = require('../common/debugger');
|
|
|
|
const assert = require('assert');
|
|
|
|
const cli = startCLI(['--port=0', fixtures.path('debugger/empty.js')]);
|
|
|
|
(async () => {
|
|
await cli.waitForInitialBreak();
|
|
await cli.waitForPrompt();
|
|
await cli.command('exec new Date(0)');
|
|
assert.match(cli.output, /1970-01-01T00:00:00\.000Z/);
|
|
await cli.command('exec null');
|
|
assert.match(cli.output, /null/);
|
|
await cli.command('exec /regex/g');
|
|
assert.match(cli.output, /\/regex\/g/);
|
|
await cli.command('exec new Map()');
|
|
assert.match(cli.output, /Map\(0\) {}/);
|
|
await cli.command('exec new Map([["a",1],["b",2]])');
|
|
assert.match(cli.output, /Map\(2\) { a => 1, b => 2 }/);
|
|
await cli.command('exec new Set()');
|
|
assert.match(cli.output, /Set\(0\) {}/);
|
|
await cli.command('exec new Set([1,2])');
|
|
assert.match(cli.output, /Set\(2\) { 1, 2 }/);
|
|
await cli.command('exec new Set([{a:1},new Set([1])])');
|
|
assert.match(cli.output, /Set\(2\) { { a: 1 }, Set\(1\) { \.\.\. } }/);
|
|
await cli.command('exec a={}; a');
|
|
assert.match(cli.output, /{}/);
|
|
await cli.command('exec a={a:1,b:{c:1}}; a');
|
|
assert.match(cli.output, /{ a: 1, b: Object }/);
|
|
await cli.command('exec a=[]; a');
|
|
assert.match(cli.output, /\[\]/);
|
|
await cli.command('exec a=[1,2]; a');
|
|
assert.match(cli.output, /\[ 1, 2 \]/);
|
|
})()
|
|
.finally(() => cli.quit())
|
|
.then(common.mustCall());
|