Skip to content

Commit 34ebb4c

Browse files
committed
[Refactor] consistent spacing
1 parent b74c4fd commit 34ebb4c

23 files changed

+74
-70
lines changed

.eslintrc

+4
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22
"root": true,
33
"rules": {
44
"indent": ["error", 4],
5+
"space-before-function-paren": [2, {
6+
"anonymous": "always",
7+
"named": "never",
8+
}],
59
},
610
}

bin/tape

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (typeof opts.require === 'string') {
1717
opts.require = [opts.require];
1818
}
1919

20-
opts.require.forEach(function(module) {
20+
opts.require.forEach(function (module) {
2121
if (module) {
2222
/* This check ensures we ignore `-r ""`, trailing `-r`, or
2323
* other silly things the user might (inadvertently) be doing.

index.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,23 @@ exports = module.exports = (function () {
4040
return getHarness().onFinish.apply(this, arguments);
4141
};
4242

43-
lazyLoad.onFailure = function() {
43+
lazyLoad.onFailure = function () {
4444
return getHarness().onFailure.apply(this, arguments);
4545
};
4646

4747
lazyLoad.getHarness = getHarness
4848

4949
return lazyLoad
5050

51-
function getHarness (opts) {
51+
function getHarness(opts) {
5252
if (!opts) opts = {};
5353
opts.autoclose = !canEmitExit;
5454
if (!harness) harness = createExitHarness(opts);
5555
return harness;
5656
}
5757
})();
5858

59-
function createExitHarness (conf) {
59+
function createExitHarness(conf) {
6060
if (!conf) conf = {};
6161
var harness = createHarness({
6262
autoclose: defined(conf.autoclose, false)
@@ -104,7 +104,7 @@ exports.test.skip = Test.skip;
104104

105105
var exitInterval;
106106

107-
function createHarness (conf_) {
107+
function createHarness(conf_) {
108108
if (!conf_) conf_ = {};
109109
var results = createResult();
110110
if (conf_.autoclose !== false) {
@@ -115,8 +115,8 @@ function createHarness (conf_) {
115115
var t = new Test(name, conf, cb);
116116
test._tests.push(t);
117117

118-
(function inspectCode (st) {
119-
st.on('test', function sub (st_) {
118+
(function inspectCode(st) {
119+
st.on('test', function sub(st_) {
120120
inspectCode(st_);
121121
});
122122
st.on('result', function (r) {

lib/default_stream.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = function () {
66
var stream = through(write, flush);
77
return stream;
88

9-
function write (buf) {
9+
function write(buf) {
1010
for (var i = 0; i < buf.length; i++) {
1111
var c = typeof buf === 'string'
1212
? buf.charAt(i)
@@ -17,7 +17,7 @@ module.exports = function () {
1717
}
1818
}
1919

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

lib/results.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var nextTick = typeof setImmediate !== 'undefined'
1616
module.exports = Results;
1717
inherits(Results, EventEmitter);
1818

19-
function Results () {
19+
function Results() {
2020
if (!(this instanceof Results)) return new Results;
2121
this.count = 0;
2222
this.fail = 0;
@@ -34,7 +34,7 @@ Results.prototype.createStream = function (opts) {
3434
var output, testId = 0;
3535
if (opts.objectMode) {
3636
output = through();
37-
self.on('_push', function ontest (t, extra) {
37+
self.on('_push', function ontest(t, extra) {
3838
if (!extra) extra = {};
3939
var id = testId++;
4040
t.once('prerun', function () {
@@ -73,7 +73,7 @@ Results.prototype.createStream = function (opts) {
7373
var t;
7474
while (t = getNextTest(self)) {
7575
t.run();
76-
if (!t.ended) return t.once('end', function(){ nextTick(next); });
76+
if (!t.ended) return t.once('end', function () { nextTick(next); });
7777
}
7878
self.emit('done');
7979
});
@@ -134,7 +134,7 @@ Results.prototype.close = function () {
134134
self._stream.queue(null);
135135
};
136136

137-
function encodeResult (res, count) {
137+
function encodeResult(res, count) {
138138
var output = '';
139139
output += (res.ok ? 'ok ' : 'not ok ') + count;
140140
output += res.name ? ' ' + res.name.toString().replace(/\s+/g, ' ') : '';
@@ -181,7 +181,7 @@ function encodeResult (res, count) {
181181
return output;
182182
}
183183

184-
function getNextTest (results) {
184+
function getNextTest(results) {
185185
if (!results._only) {
186186
return results.tests.shift();
187187
}
@@ -195,6 +195,6 @@ function getNextTest (results) {
195195
} while (results.tests.length !== 0)
196196
}
197197

198-
function invalidYaml (str) {
198+
function invalidYaml(str) {
199199
return regexpTest(yamlIndicators, str);
200200
}

lib/test.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var getTestArgs = function (name_, opts_, cb_) {
3939
return { name: name, opts: opts, cb: cb };
4040
};
4141

42-
function Test (name_, opts_, cb_) {
42+
function Test(name_, opts_, cb_) {
4343
if (! (this instanceof Test)) {
4444
return new Test(name_, opts_, cb_);
4545
}
@@ -113,7 +113,7 @@ Test.prototype.test = function (name, opts, cb) {
113113
});
114114
}
115115

116-
nextTick(function() {
116+
nextTick(function () {
117117
if (!self._plan && self.pendingCount == self._progeny.length) {
118118
self._end();
119119
}
@@ -132,14 +132,14 @@ Test.prototype.plan = function (n) {
132132
this.emit('plan', n);
133133
};
134134

135-
Test.prototype.timeoutAfter = function(ms) {
135+
Test.prototype.timeoutAfter = function (ms) {
136136
if (!ms) throw new Error('timeoutAfter requires a timespan');
137137
var self = this;
138-
var timeout = safeSetTimeout(function() {
138+
var timeout = safeSetTimeout(function () {
139139
self.fail('test timed out after ' + ms + 'ms');
140140
self.end();
141141
}, ms);
142-
this.once('end', function() {
142+
this.once('end', function () {
143143
safeClearTimeout(timeout);
144144
});
145145
}
@@ -201,7 +201,7 @@ Test.prototype._pendingAsserts = function () {
201201
return this._plan - (this._progeny.length + this.assertCount);
202202
};
203203

204-
Test.prototype._assert = function assert (ok, opts) {
204+
Test.prototype._assert = function assert(ok, opts) {
205205
var self = this;
206206
var extra = opts.extra || {};
207207

test/anonymous-fn/test-wrapper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Example of wrapper function that would invoke tape
22
module.exports = function (testCase) {
3-
return function(t) {
3+
return function (t) {
44
setUp();
55
testCase(t);
66
tearDown();

test/child_ordering.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@ var test = require('../');
22

33
var childRan = false;
44

5-
test('parent', function(t) {
6-
t.test('child', function(t) {
5+
test('parent', function (t) {
6+
t.test('child', function (t) {
77
childRan = true;
88
t.pass('child ran');
99
t.end();
1010
});
1111
t.end();
1212
});
1313

14-
test('uncle', function(t) {
14+
test('uncle', function (t) {
1515
t.ok(childRan, 'Child should run before next top-level test');
1616
t.end();
1717
});
1818

1919
var grandParentRan = false;
2020
var parentRan = false;
2121
var grandChildRan = false;
22-
test('grandparent', function(t) {
22+
test('grandparent', function (t) {
2323
t.ok(!grandParentRan, 'grand parent ran twice');
2424
grandParentRan = true;
25-
t.test('parent', function(t) {
25+
t.test('parent', function (t) {
2626
t.ok(!parentRan, 'parent ran twice');
2727
parentRan = true;
28-
t.test('grandchild', function(t) {
28+
t.test('grandchild', function (t) {
2929
t.ok(!grandChildRan, 'grand child ran twice');
3030
grandChildRan = true;
3131
t.pass('grand child ran');
@@ -34,7 +34,7 @@ test('grandparent', function(t) {
3434
t.pass('parent ran');
3535
t.end();
3636
});
37-
t.test('other parent', function(t) {
37+
t.test('other parent', function (t) {
3838
t.ok(parentRan, 'first parent runs before second parent');
3939
t.ok(grandChildRan, 'grandchild runs before second parent');
4040
t.end();
@@ -43,7 +43,7 @@ test('grandparent', function(t) {
4343
t.end();
4444
});
4545

46-
test('second grandparent', function(t) {
46+
test('second grandparent', function (t) {
4747
t.ok(grandParentRan, 'grandparent ran');
4848
t.ok(parentRan, 'parent ran');
4949
t.ok(grandChildRan, 'grandchild ran');

test/create_multiple_streams.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var tape = require('../');
22

3-
tape.test('createMultipleStreams', function(tt) {
3+
tape.test('createMultipleStreams', function (tt) {
44
tt.plan(2);
55

66
var th = tape.createHarness();
@@ -11,7 +11,7 @@ tape.test('createMultipleStreams', function(tt) {
1111

1212
th('test one', function (tht) {
1313
tht.plan(1);
14-
setTimeout( function() {
14+
setTimeout( function () {
1515
tht.pass();
1616
testOneComplete = true;
1717
}, 100);
@@ -22,7 +22,7 @@ tape.test('createMultipleStreams', function(tt) {
2222
tht.end();
2323
});
2424

25-
th.onFinish(function() {
25+
th.onFinish(function () {
2626
tt.equal(th._results.count, 2, "harness test ran");
2727
tt.equal(th._results.fail, 0, "harness test didn't fail");
2828
});

test/nested-async-plan-noend.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
var test = require('../');
22

3-
test('Harness async test support', function(t) {
3+
test('Harness async test support', function (t) {
44
t.plan(3);
55

66
t.ok(true, 'sync child A');
77

8-
t.test('sync child B', function(tt) {
8+
t.test('sync child B', function (tt) {
99
tt.plan(2);
1010

11-
setTimeout(function(){
12-
tt.test('async grandchild A', function(ttt) {
11+
setTimeout(function () {
12+
tt.test('async grandchild A', function (ttt) {
1313
ttt.plan(1);
1414
ttt.ok(true);
1515
});
1616
}, 50);
1717

18-
setTimeout(function() {
19-
tt.test('async grandchild B', function(ttt) {
18+
setTimeout(function () {
19+
tt.test('async grandchild B', function (ttt) {
2020
ttt.plan(1);
2121
ttt.ok(true);
2222
});
2323
}, 100);
2424
});
2525

26-
setTimeout(function() {
27-
t.test('async child', function(tt) {
26+
setTimeout(function () {
27+
t.test('async child', function (tt) {
2828
tt.plan(2);
2929
tt.ok(true, 'sync grandchild in async child A');
30-
tt.test('sync grandchild in async child B', function(ttt) {
30+
tt.test('sync grandchild in async child B', function (ttt) {
3131
ttt.plan(1);
3232
ttt.ok(true);
3333
});

test/nested-sync-noplan-noend.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ tap.test('nested sync test without plan or end', function (tt) {
2525

2626
test.createStream().pipe(concat(tc));
2727

28-
test('nested without plan or end', function(t) {
29-
t.test('first', function(q) {
28+
test('nested without plan or end', function (t) {
29+
t.test('first', function (q) {
3030
setTimeout(function first() {
3131
q.ok(true);
3232
q.end()
3333
}, 10);
3434
});
35-
t.test('second', function(q) {
35+
t.test('second', function (q) {
3636
setTimeout(function second() {
3737
q.ok(true);
3838
q.end()

test/nested2.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
var test = require('../');
22

3-
test(function(t) {
3+
test(function (t) {
44
var i = 0
5-
t.test('setup', function(t) {
6-
process.nextTick(function() {
5+
t.test('setup', function (t) {
6+
process.nextTick(function () {
77
t.equal(i, 0, 'called once')
88
i++
99
t.end()
1010
})
1111
})
1212

1313

14-
t.test('teardown', function(t) {
14+
t.test('teardown', function (t) {
1515
t.end()
1616
})
1717

test/onFailure.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ var tape = require("../").createHarness();
33

44
//Because this test passing depends on a failure,
55
//we must direct the failing output of the inner test
6-
var noop = function(){}
6+
var noop = function () {}
77
var mockSink = {on:noop, removeListener:noop, emit:noop, end:noop}
88
tape.createStream().pipe(mockSink);
99

10-
tap.test("on failure", { timeout: 1000 }, function(tt) {
10+
tap.test("on failure", { timeout: 1000 }, function (tt) {
1111
tt.plan(1);
1212

13-
tape("dummy test", function(t) {
13+
tape("dummy test", function (t) {
1414
t.fail();
1515
t.end();
1616
});
1717

18-
tape.onFailure(function() {
18+
tape.onFailure(function () {
1919
tt.pass("tape ended");
2020
});
2121
});

test/onFinish.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ var tape = require("../");
33

44
tap.test("on finish", {timeout: 1000}, function (tt) {
55
tt.plan(1);
6-
tape.onFinish(function() {
6+
tape.onFinish(function () {
77
tt.pass('tape ended');
88
});
9-
tape('dummy test', function(t) {
9+
tape('dummy test', function (t) {
1010
t.end();
1111
});
1212
});

0 commit comments

Comments
 (0)