Skip to content

Commit 4210e44

Browse files
committed
[Tests] add npm run test:example to test non-failing examples.
- Note: does not work with `nyc` due to falafel usage.
1 parent 266bc66 commit 4210e44

File tree

7 files changed

+21
-20
lines changed

7 files changed

+21
-20
lines changed

example/nested.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var falafel = require('falafel');
44
var test = require('../');
55

66
test('nested array test', function (t) {
7-
t.plan(5);
7+
t.plan(6);
88

99
var src = '(' + function () {
1010
var xs = [ 1, 2, [ 3, 4 ] ];
@@ -28,19 +28,19 @@ test('nested array test', function (t) {
2828
});
2929

3030
var arrays = [
31-
[ 3, 4 ],
32-
[ 1, 2, [ 3, 4 ] ],
33-
[ 5, 6 ],
34-
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
31+
[3, 4],
32+
[1, 2, [3, 4]],
33+
[5, 6],
34+
[[1, 2, [3, 4]], [5, 6]],
3535
];
3636

37-
Function(['fn','g'], output)(
37+
Function(['fn', 'g'], output)(
3838
function (xs) {
3939
t.same(arrays.shift(), xs);
4040
return xs;
4141
},
4242
function (xs) {
43-
t.same(xs, [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]);
43+
t.same(xs, [[1, 2, [3, 4]], [5, 6]]);
4444
}
4545
);
4646
});

example/not_enough.js example/not_enough_fail.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ test('array', function (t) {
77
t.plan(8);
88

99
var src = '(' + function () {
10-
var xs = [ 1, 2, [ 3, 4 ] ];
11-
var ys = [ 5, 6 ];
12-
g([ xs, ys ]);
10+
var xs = [1, 2, [3, 4]];
11+
var ys = [5, 6];
12+
g([xs, ys]);
1313
} + ')()';
1414

1515
var output = falafel(src, function (node) {
@@ -19,19 +19,19 @@ test('array', function (t) {
1919
});
2020

2121
var arrays = [
22-
[ 3, 4 ],
23-
[ 1, 2, [ 3, 4 ] ],
24-
[ 5, 6 ],
25-
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
22+
[3, 4],
23+
[1, 2, [3, 4]],
24+
[5, 6],
25+
[[1, 2, [3, 4]], [5, 6]],
2626
];
2727

28-
Function(['fn','g'], output)(
28+
Function(['fn', 'g'], output)(
2929
function (xs) {
3030
t.same(arrays.shift(), xs);
3131
return xs;
3232
},
3333
function (xs) {
34-
t.same(xs, [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]);
34+
t.same(xs, [[1, 2, [3, 4]], [5, 6]]);
3535
}
3636
);
3737
});
File renamed without changes.

example/stream/test/y.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var test = require('../../../');
44
test(function (t) {
55
t.plan(2);
6-
t.equal(1+1, 2);
6+
t.equal(1 + 1, 2);
77
t.ok(true);
88
});
99

example/timing.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ test('timing test', function (t) {
66
t.plan(2);
77

88
t.equal(typeof Date.now, 'function');
9-
var start = new Date;
9+
var start = Date.now();
1010

1111
setTimeout(function () {
12-
t.equal(new Date - start, 100);
12+
t.ok(Date.now() - start > 100);
1313
}, 100);
1414
});
File renamed without changes.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
"pretest": "npm run lint",
5858
"test": "npm run tests-only",
5959
"posttest": "aud --production",
60-
"tests-only": "nyc tap test/*.js"
60+
"tests-only": "nyc tap test/*.js",
61+
"test:example": "find example -name '*.js' | grep -v fail | grep -v static | xargs tap"
6162
},
6263
"testling": {
6364
"files": "test/browser/*.js",

0 commit comments

Comments
 (0)