mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7a0e462f9f
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const path = require('path');
|
|
const spawn = require('child_process').spawn;
|
|
const assert = require('assert');
|
|
const fixture = path.join(
|
|
common.fixturesDir,
|
|
'debugger-repeat-last.js'
|
|
);
|
|
|
|
const args = [
|
|
'debug',
|
|
`--port=${common.PORT}`,
|
|
fixture
|
|
];
|
|
|
|
const proc = spawn(process.execPath, args, { stdio: 'pipe' });
|
|
proc.stdout.setEncoding('utf8');
|
|
|
|
let stdout = '';
|
|
|
|
let sentCommand = false;
|
|
let sentEmpty = false;
|
|
let sentExit = false;
|
|
|
|
proc.stdout.on('data', (data) => {
|
|
stdout += data;
|
|
if (!sentCommand && stdout.includes('> 1')) {
|
|
setImmediate(() => { proc.stdin.write('n\n'); });
|
|
return sentCommand = true;
|
|
}
|
|
if (!sentEmpty && stdout.includes('> 3')) {
|
|
setImmediate(() => { proc.stdin.write('\n'); });
|
|
return sentEmpty = true;
|
|
}
|
|
if (!sentExit && sentCommand && sentEmpty) {
|
|
setTimeout(() => { proc.stdin.write('\n\n\n.exit\n\n\n'); }, 1);
|
|
return sentExit = true;
|
|
}
|
|
});
|
|
|
|
process.on('exit', (exitCode) => {
|
|
assert.strictEqual(exitCode, 0);
|
|
console.log(stdout);
|
|
});
|