Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
Trott committed Feb 27, 2017
commit 104e4628a1f2009002f332f8628dc2a7718fd457
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