From 1ea9057585ae957f0a15d37afdf9872625d1e996 Mon Sep 17 00:00:00 2001 From: James Halliday Date: Sun, 25 Nov 2012 07:43:40 -0800 Subject: [PATCH] nested failure example --- example/nested_fail.js | 51 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 example/nested_fail.js diff --git a/example/nested_fail.js b/example/nested_fail.js new file mode 100644 index 00000000..3ab5cb3a --- /dev/null +++ b/example/nested_fail.js @@ -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); +});