Skip to content

Commit

Permalink
nested failure example
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Nov 25, 2012
1 parent dab1314 commit 1ea9057
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions example/nested_fail.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
var falafel = require('falafel');
var test = require('../');

test('nested array test', function (t) {
t.plan(5);

var src = '(' + function () {
var xs = [ 1, 2, [ 3, 4 ] ];
var ys = [ 5, 6 ];
g([ xs, ys ]);
} + ')()';

var output = falafel(src, function (node) {
if (node.type === 'ArrayExpression') {
node.update('fn(' + node.source() + ')');
}
});

t.test('inside test', function (q) {
q.plan(2);
q.ok(true);

setTimeout(function () {
q.equal(3, 4);
}, 3000);
});

var arrays = [
[ 3, 4 ],
[ 1, 2, [ 3, 4 ] ],
[ 5, 6 ],
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
];

Function(['fn','g'], output)(
function (xs) {
t.same(arrays.shift(), xs);
return xs;
},
function (xs) {
t.same(xs, [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]);
}
);
});

test('another', function (t) {
t.plan(1);
setTimeout(function () {
t.ok(true);
}, 100);
});

0 comments on commit 1ea9057

Please sign in to comment.