From c39be29cd9063497506b63e27ba715e3101ca666 Mon Sep 17 00:00:00 2001 From: Stephen Sugden Date: Mon, 14 Oct 2013 15:21:49 -0700 Subject: [PATCH] Revert "Add test for running children asynchronously" This reverts commit 018690fe0a49dc5b3b24e2733b74d6d676f897a8. --- test/child_ordering_async.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 test/child_ordering_async.js diff --git a/test/child_ordering_async.js b/test/child_ordering_async.js deleted file mode 100644 index 32576455..00000000 --- a/test/child_ordering_async.js +++ /dev/null @@ -1,15 +0,0 @@ -var test = require('../'); - -test('parent', function (t) { - var parentFinished = false; - setTimeout(function () { - t.pass('pass parent test'); - parentFinished = true; - t.end(); - }) - - t.test('child', function (t) { - t.ok(parentFinished, 'parent should finish before child runs'); - t.end(); - }) -})