Skip to content

Commit 6209882

Browse files
committed
Merge all orphaned tags: 'v1.1.2', 'v2.0.2', 'v2.1.1', 'v2.2.2', 'v2.3.3', 'v2.4.3', 'v2.5.1', 'v2.6.1', 'v2.7.3', 'v2.8.1', 'v2.9.1', 'v2.10.3', 'v2.11.1', 'v2.13.4', 'v2.14.0', 'v2.14.1', 'v3.6.1'
18 parents fd807f5 + deb04f4 + 9404446 + ce216d7 + 9d63df9 + 3d72979 + 6a6888d + 17c34bb + 3d63e12 + 2db6c69 + 87b32e8 + c181ca5 + 8695930 + 17894ca + aa5bd84 + eddbff5 + d0a675f + 82e7b26 commit 6209882

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+3512
-902
lines changed

.editorconfig

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
max_line_length = 140
11+
block_comment_start = /*
12+
block_comment = *
13+
block_comment_end = */
14+
15+
[*.md]
16+
indent_style = space
17+
indent_size = 4
18+
19+
[readme.markdown]
20+
indent_size = off
21+
max_line_length = off
22+
23+
[*.json]
24+
max_line_length = off
25+
26+
[*.yml]
27+
max_line_length = off
28+
29+
[Makefile]
30+
max_line_length = off
31+
32+
[.travis.yml]
33+
indent_size = 2

.eslintrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"root": true,
3+
"rules": {
4+
"indent": ["error", 4],
5+
},
6+
}

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
node_modules
1+
# gitignore
2+
3+
/node_modules
4+
5+
# Only apps should have lockfiles
6+
yarn.lock
7+
package-lock.json

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

+35-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
11
language: node_js
2+
os:
3+
- linux
24
node_js:
3-
- "0.8"
5+
- "10"
6+
- "9"
7+
- "8"
8+
- "7"
9+
- "6"
10+
- "5"
11+
- "4"
12+
- "iojs"
13+
- "0.12"
414
- "0.10"
15+
- "0.8"
16+
before_install:
17+
- 'case "${TRAVIS_NODE_VERSION}" in 0.*) export NPM_CONFIG_STRICT_SSL=false ;; esac'
18+
- 'nvm install-latest-npm'
19+
install:
20+
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ] || [ "${TRAVIS_NODE_VERSION}" = "0.9" ]; then nvm install --latest-npm 0.8 && npm install && nvm use "${TRAVIS_NODE_VERSION}"; else npm install; fi;'
21+
script:
22+
- 'if [ -n "${PRETEST-}" ]; then npm run pretest ; fi'
23+
- 'if [ -n "${POSTTEST-}" ]; then npm run posttest ; fi'
24+
- 'if [ -n "${COVERAGE-}" ]; then npm run coverage ; fi'
25+
- 'if [ -n "${TEST-}" ]; then npm run tests-only ; fi'
26+
sudo: false
27+
env:
28+
- TEST=true
29+
matrix:
30+
fast_finish: true
31+
include:
32+
- node_js: "lts/*"
33+
env: PRETEST=true
34+
allow_failures:
35+
- node_js: "9"
36+
- node_js: "7"
37+
- node_js: "5"
38+
- node_js: "iojs"

bin/tape

+38-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,43 @@
11
#!/usr/bin/env node
22

3-
var path = require('path');
4-
process.argv.slice(2).forEach(function(file) {
5-
require(path.resolve(process.cwd(), file));
3+
var resolveModule = require('resolve').sync;
4+
var resolvePath = require('path').resolve;
5+
var parseOpts = require('minimist');
6+
var glob = require('glob');
7+
8+
var opts = parseOpts(process.argv.slice(2), {
9+
alias: { r: 'require' },
10+
string: 'require',
11+
default: { r: [] }
12+
});
13+
14+
var cwd = process.cwd();
15+
16+
if (typeof opts.require === 'string') {
17+
opts.require = [opts.require];
18+
}
19+
20+
opts.require.forEach(function(module) {
21+
if (module) {
22+
/* This check ensures we ignore `-r ""`, trailing `-r`, or
23+
* other silly things the user might (inadvertently) be doing.
24+
*/
25+
require(resolveModule(module, { basedir: cwd }));
26+
}
27+
});
28+
29+
opts._.forEach(function (arg) {
30+
// If glob does not match, `files` will be an empty array.
31+
// Note: `glob.sync` may throw an error and crash the node process.
32+
var files = glob.sync(arg);
33+
34+
if (!Array.isArray(files)) {
35+
throw new TypeError('unknown error: glob.sync did not return an array or throw. Please report this.');
36+
}
37+
38+
files.forEach(function (file) {
39+
require(resolvePath(cwd, file));
40+
});
641
});
742

843
// vim: ft=javascript

example/array.js

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

44
test('array', function (t) {
55
t.plan(5);
6-
6+
77
var src = '(' + function () {
88
var xs = [ 1, 2, [ 3, 4 ] ];
99
var ys = [ 5, 6 ];
1010
g([ xs, ys ]);
1111
} + ')()';
12-
12+
1313
var output = falafel(src, function (node) {
1414
if (node.type === 'ArrayExpression') {
1515
node.update('fn(' + node.source() + ')');
1616
}
1717
});
18-
18+
1919
var arrays = [
2020
[ 3, 4 ],
2121
[ 1, 2, [ 3, 4 ] ],
2222
[ 5, 6 ],
2323
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
2424
];
25-
25+
2626
Function(['fn','g'], output)(
2727
function (xs) {
2828
t.same(arrays.shift(), xs);

example/fail.js

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

44
test('array', function (t) {
55
t.plan(5);
6-
6+
77
var src = '(' + function () {
88
var xs = [ 1, 2, [ 3, 4 ] ];
99
var ys = [ 5, 6 ];
1010
g([ xs, ys ]);
1111
} + ')()';
12-
12+
1313
var output = falafel(src, function (node) {
1414
if (node.type === 'ArrayExpression') {
1515
node.update('fn(' + node.source() + ')');
1616
}
1717
});
18-
18+
1919
var arrays = [
2020
[ 3, 4 ],
2121
[ 1, 2, [ 3, 4 ] ],
2222
[ 5, 6 ],
2323
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
2424
];
25-
25+
2626
Function(['fn','g'], output)(
2727
function (xs) {
2828
t.same(arrays.shift(), xs);

example/nested.js

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

44
test('nested array test', function (t) {
55
t.plan(5);
6-
6+
77
var src = '(' + function () {
88
var xs = [ 1, 2, [ 3, 4 ] ];
99
var ys = [ 5, 6 ];
1010
g([ xs, ys ]);
1111
} + ')()';
12-
12+
1313
var output = falafel(src, function (node) {
1414
if (node.type === 'ArrayExpression') {
1515
node.update('fn(' + node.source() + ')');
1616
}
1717
});
18-
18+
1919
t.test('inside test', function (q) {
2020
q.plan(2);
2121
q.ok(true, 'inside ok');
22-
22+
2323
setTimeout(function () {
2424
q.ok(true, 'inside delayed');
2525
}, 3000);
2626
});
27-
27+
2828
var arrays = [
2929
[ 3, 4 ],
3030
[ 1, 2, [ 3, 4 ] ],
3131
[ 5, 6 ],
3232
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
3333
];
34-
34+
3535
Function(['fn','g'], output)(
3636
function (xs) {
3737
t.same(arrays.shift(), xs);

example/nested_fail.js

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

44
test('nested array test', function (t) {
55
t.plan(5);
6-
6+
77
var src = '(' + function () {
88
var xs = [ 1, 2, [ 3, 4 ] ];
99
var ys = [ 5, 6 ];
1010
g([ xs, ys ]);
1111
} + ')()';
12-
12+
1313
var output = falafel(src, function (node) {
1414
if (node.type === 'ArrayExpression') {
1515
node.update('fn(' + node.source() + ')');
1616
}
1717
});
18-
18+
1919
t.test('inside test', function (q) {
2020
q.plan(2);
2121
q.ok(true);
22-
22+
2323
setTimeout(function () {
2424
q.equal(3, 4);
2525
}, 3000);
2626
});
27-
27+
2828
var arrays = [
2929
[ 3, 4 ],
3030
[ 1, 2, [ 3, 4 ] ],
3131
[ 5, 6 ],
3232
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
3333
];
34-
34+
3535
Function(['fn','g'], output)(
3636
function (xs) {
3737
t.same(arrays.shift(), xs);

example/not_enough.js

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

44
test('array', function (t) {
55
t.plan(8);
6-
6+
77
var src = '(' + function () {
88
var xs = [ 1, 2, [ 3, 4 ] ];
99
var ys = [ 5, 6 ];
1010
g([ xs, ys ]);
1111
} + ')()';
12-
12+
1313
var output = falafel(src, function (node) {
1414
if (node.type === 'ArrayExpression') {
1515
node.update('fn(' + node.source() + ')');
1616
}
1717
});
18-
18+
1919
var arrays = [
2020
[ 3, 4 ],
2121
[ 1, 2, [ 3, 4 ] ],
2222
[ 5, 6 ],
2323
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
2424
];
25-
25+
2626
Function(['fn','g'], output)(
2727
function (xs) {
2828
t.same(arrays.shift(), xs);

example/stream/object.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var test = require('../../');
2+
var path = require('path');
3+
4+
test.createStream({ objectMode: true }).on('data', function (row) {
5+
console.log(JSON.stringify(row))
6+
});
7+
8+
process.argv.slice(2).forEach(function (file) {
9+
require(path.resolve(file));
10+
});

example/stream/tap.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var test = require('../../');
2+
var path = require('path');
3+
4+
test.createStream().pipe(process.stdout);
5+
6+
process.argv.slice(2).forEach(function (file) {
7+
require(path.resolve(file));
8+
});

example/stream/test/x.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
var test = require('../../../');
2+
test(function (t) {
3+
t.plan(1);
4+
t.equal('beep', 'boop');
5+
});

example/stream/test/y.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
var test = require('../../../');
2+
test(function (t) {
3+
t.plan(2);
4+
t.equal(1+1, 2);
5+
t.ok(true);
6+
});
7+
8+
test('wheee', function (t) {
9+
t.ok(true);
10+
t.end();
11+
});

example/throw.js

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

44
test('throw', function (t) {
55
t.plan(2);
6-
6+
77
setTimeout(function () {
88
throw new Error('doom');
99
}, 100);

example/timing.js

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

33
test('timing test', function (t) {
44
t.plan(2);
5-
5+
66
t.equal(typeof Date.now, 'function');
77
var start = new Date;
8-
8+
99
setTimeout(function () {
1010
t.equal(new Date - start, 100);
1111
}, 100);

0 commit comments

Comments
 (0)