Skip to content

Commit

Permalink
test: apply strict mode in test-repl
Browse files Browse the repository at this point in the history
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 <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
  • Loading branch information
Trott authored and addaleax committed Mar 5, 2017
1 parent 13cb8a6 commit 4f92536
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/parallel/test-repl.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/* eslint-disable max-len, strict */
/* eslint-disable max-len */
'use strict';

const common = require('../common');
const assert = require('assert');

Expand Down

0 comments on commit 4f92536

Please sign in to comment.