diff options
author | Rich Trott <rtrott@gmail.com> | 2015-10-01 21:38:16 -0700 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2015-10-06 15:11:58 -0700 |
commit | 3de353b5544ec5863dc4e1291cdf1aed01b50358 (patch) | |
tree | 7998c70ed474ce800b479314f86bcad32d4264a8 /test/parallel/test-repl-autolibs.js | |
parent | c78091d689d0d4d56b3231b9050d52ca69ecb449 (diff) | |
download | node-new-3de353b5544ec5863dc4e1291cdf1aed01b50358.tar.gz |
test: make common.js mandatory via linting rule
test/common.js contains code that detects global variable leaks.
This eslint rule checks that a module named `common` is loaded. It is
only applicable to files in the test directory. Tests that intentionally
leak variables can opt out with an eslint-disable comment.
PR-URL: https://github.com/nodejs/node/pull/3157
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-repl-autolibs.js')
-rw-r--r-- | test/parallel/test-repl-autolibs.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/parallel/test-repl-autolibs.js b/test/parallel/test-repl-autolibs.js index 4103a19243..e37f2d036e 100644 --- a/test/parallel/test-repl-autolibs.js +++ b/test/parallel/test-repl-autolibs.js @@ -1,3 +1,4 @@ +/* eslint-disable required-modules */ 'use strict'; var assert = require('assert'); var util = require('util'); |