Skip to content

Commit 6df3b7b

Browse files
makenovaFishrock123
authored andcommitted
test: update repl tests
change var to const or let change assert.equal to assert.strictEqual PR-URL: #9991 Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 47b5f9e commit 6df3b7b

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

test/parallel/test-repl.js

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable max-len, strict */
2-
var common = require('../common');
3-
var assert = require('assert');
2+
const common = require('../common');
3+
const assert = require('assert');
44

55
common.globalCheck = false;
66
common.refreshTmpDir();
@@ -15,11 +15,11 @@ const prompt_npm = 'npm should be run outside of the ' +
1515
'node repl, in your normal shell.\n' +
1616
'(Press Control-D to exit.)\n';
1717
const expect_npm = prompt_npm + prompt_unix;
18-
var server_tcp, server_unix, client_tcp, client_unix, replServer;
18+
let server_tcp, server_unix, client_tcp, client_unix, replServer;
1919

2020

2121
// absolute path to test/fixtures/a.js
22-
var moduleFilename = require('path').join(common.fixturesDir, 'a');
22+
const moduleFilename = require('path').join(common.fixturesDir, 'a');
2323

2424
console.error('repl test');
2525

@@ -30,7 +30,7 @@ global.invoke_me = function(arg) {
3030

3131
function send_expect(list) {
3232
if (list.length > 0) {
33-
var cur = list.shift();
33+
const cur = list.shift();
3434

3535
console.error('sending ' + JSON.stringify(cur.send));
3636

@@ -56,8 +56,8 @@ function strict_mode_error_test() {
5656

5757
function error_test() {
5858
// The other stuff is done so reuse unix socket
59-
var read_buffer = '';
60-
var run_strict_test = true;
59+
let read_buffer = '';
60+
let run_strict_test = true;
6161
client_unix.removeAllListeners('data');
6262

6363
client_unix.on('data', function(data) {
@@ -70,7 +70,7 @@ function error_test() {
7070
if (read_buffer.indexOf(prompt_unix) !== -1) {
7171
// if it's an exact match, then don't do the regexp
7272
if (read_buffer !== client_unix.expect) {
73-
var expect = client_unix.expect;
73+
let expect = client_unix.expect;
7474
if (expect === prompt_multiline)
7575
expect = /[.]{3} /;
7676
assert.ok(read_buffer.match(expect));
@@ -367,13 +367,13 @@ function tcp_test() {
367367
});
368368

369369
server_tcp.listen(0, function() {
370-
var read_buffer = '';
370+
let read_buffer = '';
371371

372372
client_tcp = net.createConnection(this.address().port);
373373

374374
client_tcp.on('connect', function() {
375-
assert.equal(true, client_tcp.readable);
376-
assert.equal(true, client_tcp.writable);
375+
assert.strictEqual(true, client_tcp.readable);
376+
assert.strictEqual(true, client_tcp.writable);
377377

378378
send_expect([
379379
{ client: client_tcp, send: '',
@@ -436,13 +436,13 @@ function unix_test() {
436436
});
437437

438438
server_unix.on('listening', function() {
439-
var read_buffer = '';
439+
let read_buffer = '';
440440

441441
client_unix = net.createConnection(common.PIPE);
442442

443443
client_unix.on('connect', function() {
444-
assert.equal(true, client_unix.readable);
445-
assert.equal(true, client_unix.writable);
444+
assert.strictEqual(true, client_unix.readable);
445+
assert.strictEqual(true, client_unix.writable);
446446

447447
send_expect([
448448
{ client: client_unix, send: '',

0 commit comments

Comments
 (0)