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(); - }) -})