Skip to content

Commit 7dcbd76

Browse files
committed
[eslint] enable wrap-regex
1 parent ae6de0c commit 7dcbd76

6 files changed

+18
-17
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"wrap-iife": ["error", "outside", {
6060
"functionPrototypeMethods": true,
6161
}],
62+
"wrap-regex": "error",
6263
},
6364
"ignorePatterns": [ "syntax-error.*" ],
6465
"overrides": [

lib/default_stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = function () {
1919
}
2020

2121
function flush() {
22-
if (fs.writeSync && /^win/.test(process.platform)) {
22+
if (fs.writeSync && (/^win/).test(process.platform)) {
2323
try { fs.writeSync(1, line + '\n'); }
2424
catch (e) { stream.emit('error', e); }
2525
} else {

test/async-await.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tap.test('async2', function (t) {
3636
runProgram('async-await', 'async2.js', function (r) {
3737
var stdout = r.stdout.toString('utf8');
3838
var lines = stdout.split('\n').filter(function (line) {
39-
return !/^(\s+)at(\s+)<anonymous>$/.test(line);
39+
return !(/^(\s+)at(\s+)<anonymous>$/).test(line);
4040
});
4141

4242
t.same(stripFullStack(lines.join('\n')), [
@@ -184,9 +184,9 @@ tap.test('sync-error', function (t) {
184184
var stderr = r.stderr.toString('utf8');
185185
var lines = stderr.split('\n');
186186
lines = lines.filter(function (line) {
187-
return !/\(timers.js:/.test(line)
188-
&& !/\(internal\/timers.js:/.test(line)
189-
&& !/Immediate\.next/.test(line);
187+
return !(/\(timers.js:/).test(line)
188+
&& !(/\(internal\/timers.js:/).test(line)
189+
&& !(/Immediate\.next/).test(line);
190190
});
191191
stderr = lines.join('\n');
192192

@@ -211,7 +211,7 @@ tap.test('async-error', function (t) {
211211
var stdout = r.stdout.toString('utf8');
212212
var lines = stdout.split('\n');
213213
lines = lines.filter(function (line) {
214-
return !/^(\s+)at(\s+)<anonymous>$/.test(line);
214+
return !(/^(\s+)at(\s+)<anonymous>$/).test(line);
215215
});
216216
stdout = lines.join('\n');
217217

@@ -240,9 +240,9 @@ tap.test('async-error', function (t) {
240240
var stderr = r.stderr.toString('utf8');
241241
var lines = stderr.split('\n');
242242
lines = lines.filter(function (line) {
243-
return !/\(timers.js:/.test(line)
244-
&& !/\(internal\/timers.js:/.test(line)
245-
&& !/Immediate\.next/.test(line);
243+
return !(/\(timers.js:/).test(line)
244+
&& !(/\(internal\/timers.js:/).test(line)
245+
&& !(/Immediate\.next/).test(line);
246246
});
247247
stderr = lines.join('\n');
248248

@@ -256,7 +256,7 @@ tap.test('async-bug', function (t) {
256256
var stdout = r.stdout.toString('utf8');
257257
var lines = stdout.split('\n');
258258
lines = lines.filter(function (line) {
259-
return !/^(\s+)at(\s+)<anonymous>$/.test(line);
259+
return !(/^(\s+)at(\s+)<anonymous>$/).test(line);
260260
});
261261
stdout = lines.join('\n');
262262

test/ignore_from_gitignore.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tap.test('Should fail when ignore file does not exist', { skip: process.platform
110110
};
111111

112112
var testStderr = function (rows) {
113-
tt.ok(/^ENOENT[:,] no such file or directory,? (?:open )?'\$TEST\/ignore\/.gitignore'\n$/m.test(stripFullStack(rows.toString('utf8')).join('\n')));
113+
tt.ok((/^ENOENT[:,] no such file or directory,? (?:open )?'\$TEST\/ignore\/.gitignore'\n$/m).test(stripFullStack(rows.toString('utf8')).join('\n')));
114114
};
115115

116116
var ps = spawn(tapeBin, ['**/*.js', '-i'], { cwd: path.join(__dirname, 'ignore') });

test/promise_fail.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ tap.test('callback returning rejected promise should cause that test (and only t
1515
ps.stdout.pipe(concat(function (rows) {
1616
var rowsString = rows.toString('utf8');
1717

18-
if (/^skip\n$/.test(rowsString)) {
18+
if ((/^skip\n$/).test(rowsString)) {
1919
return tt.pass('the test file indicated it should be skipped');
2020
}
2121

2222
var strippedString = stripFullStack(rowsString).filter(function (line) {
23-
return !/^(\s+)at(\s+)(?:Test\.)?<anonymous>(?:$|\s)/.test(line);
23+
return !(/^(\s+)at(\s+)(?:Test\.)?<anonymous>(?:$|\s)/).test(line);
2424
}).join('\n');
2525

2626
// hack for consistency across all versions of node
@@ -63,12 +63,12 @@ tap.test('subtest callback returning rejected promise should cause that subtest
6363
ps.stdout.pipe(concat(function (rows) {
6464
var rowsString = rows.toString('utf8');
6565

66-
if (/^skip\n$/.test(rowsString)) {
66+
if ((/^skip\n$/).test(rowsString)) {
6767
return tt.pass('the test file indicated it should be skipped');
6868
}
6969

7070
var strippedString = stripFullStack(rowsString).filter(function (line) {
71-
return !/^(\s+)at(\s+)(?:Test\.)?<anonymous>(?:$|\s)/.test(line);
71+
return !(/^(\s+)at(\s+)(?:Test\.)?<anonymous>(?:$|\s)/).test(line);
7272
}).join('\n');
7373

7474
// hack for consistency across all versions of node

test/stackTrace.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ tap.test('preserves stack trace for failed assertions', function (tt) {
171171
tt.equal(typeof data.diag.stack, 'string');
172172
var at = data.diag.at || '';
173173
stack = data.diag.stack || '';
174-
tt.ok(/^Error: true should be false(\n at .+)+/.exec(stack), 'stack should be a stack');
174+
tt.ok((/^Error: true should be false(\n at .+)+/).exec(stack), 'stack should be a stack');
175175
tt.deepEqual(data, {
176176
ok: false,
177177
id: 1,
@@ -236,7 +236,7 @@ tap.test('preserves stack trace for failed assertions where actual===falsy', fun
236236
tt.equal(typeof data.diag.stack, 'string');
237237
var at = data.diag.at || '';
238238
stack = data.diag.stack || '';
239-
tt.ok(/^Error: false should be true(\n at .+)+/.exec(stack), 'stack should be a stack');
239+
tt.ok((/^Error: false should be true(\n at .+)+/).exec(stack), 'stack should be a stack');
240240
tt.deepEqual(data, {
241241
ok: false,
242242
id: 1,

0 commit comments

Comments
 (0)