Skip to content

Commit 4f92536

Browse files
Trottaddaleax
authored andcommitted
test: apply strict mode in test-repl
Strict mode for the test will not automatically enable strict mode in the REPL object. Enable strict mode in the test. PR-URL: #11575 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
1 parent 13cb8a6 commit 4f92536

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/parallel/test-repl.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
/* eslint-disable max-len, strict */
1+
/* eslint-disable max-len */
2+
'use strict';
3+
24
const common = require('../common');
35
const assert = require('assert');
46

0 commit comments

Comments
 (0)