Skip to content

Commit 2ebd23a

Browse files
committed
[eslint] enable no-unused-vars
1 parent 771f3dd commit 2ebd23a

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

.eslintrc

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
"allow": []
4646
}],
4747
"no-undef": "error",
48+
"no-unused-vars": ["error", {
49+
"vars": "all",
50+
"args": "after-used"
51+
}],
4852
"no-useless-escape": "error",
4953
"object-curly-newline": ["error", {
5054
"ObjectExpression": {

index.js

+2
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ function createExitHarness(conf, wait) {
107107
var stream = harness.createStream({ objectMode: config.objectMode });
108108
var es = stream.pipe(config.stream || createDefaultStream());
109109
if (canEmitExit) {
110+
// TODO: use `err` arg?
111+
// eslint-disable-next-line no-unused-vars
110112
es.on('error', function (err) { harness._exitCode = 1; });
111113
}
112114
stream.on('end', function () { ended = true; });

lib/test.js

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ var safeClearTimeout = clearTimeout;
3333

3434
inherits(Test, EventEmitter);
3535

36+
// eslint-disable-next-line no-unused-vars
3637
var getTestArgs = function (name_, opts_, cb_) {
3738
var name = '(anonymous)';
3839
var opts = {};
@@ -744,6 +745,7 @@ Test.prototype.doesNotMatch = function doesNotMatch(string, regexp, msg, extra)
744745
});
745746
};
746747

748+
// eslint-disable-next-line no-unused-vars
747749
Test.skip = function skip(name_, _opts, _cb) {
748750
var args = getTestArgs.apply(null, arguments);
749751
args.opts.skip = true;

test/import.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ tap.test('errors importing test files', function (t) {
9292
var message = options.error + ' in `' + options.mode + '` mode`';
9393
var ps = tape(options.files, { env: { NODE_OPTIONS: '--unhandled-rejections=' + options.mode } });
9494
ps.stderr.pipe(concat(options.unhandledRejection(message)));
95-
ps.on('exit', function (code, sig) {
95+
ps.on('exit', function (code/* , sig */) {
9696
t.equal(code, options.exitCode, message + ' has exit code ' + options.exitCode);
9797
});
9898
};
@@ -191,8 +191,7 @@ tap.test('errors importing test files', function (t) {
191191
function tape(args, options) {
192192
options = assign({ cwd: __dirname }, options);
193193

194-
var proc = require('child_process');
195194
var bin = __dirname + '/../bin/tape';
196195

197-
return proc.spawn('node', [bin].concat(args.split(' ')), options);
196+
return spawn('node', [bin].concat(args.split(' ')), options);
198197
}

test/promises/fail.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var test = require('../../');
44

55
if (typeof Promise === 'function' && typeof Promise.resolve === 'function') {
6-
test('promise', function (t) {
6+
test('promise', function () {
77
return new Promise(function (resolve, reject) {
88
reject(new Error('rejection message'));
99
});

test/require.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ tap.test('requiring multiple modules', function (t) {
6464
});
6565

6666
function tape(args) {
67-
var proc = require('child_process');
6867
var bin = __dirname + '/../bin/tape';
6968

70-
return proc.spawn('node', [bin].concat(args.split(' ')), { cwd: __dirname });
69+
return spawn('node', [bin].concat(args.split(' ')), { cwd: __dirname });
7170
}

test/skip.js

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict';
22

33
var test = require('../');
4-
var ran = 0;
54

65
var concat = require('concat-stream');
76
var tap = require('tap');
@@ -32,18 +31,15 @@ tap.test('test SKIP comment', function (assert) {
3231

3332
test('skip this', { skip: true }, function (t) {
3433
t.fail('this should not even run');
35-
ran++;
3634
t.end();
3735
});
3836

3937
test.skip('skip this too', function (t) {
4038
t.fail('this should not even run');
41-
ran++;
4239
t.end();
4340
});
4441

4542
test('skip subtest', function (t) {
46-
ran++;
4743
t.test('skip this', { skip: true }, function (st) {
4844
st.fail('this should not even run');
4945
st.end();

0 commit comments

Comments
 (0)