From 19003bde9013e4d6e2b09058b34bdd097e054449 Mon Sep 17 00:00:00 2001 From: Oscar Shrimpton Date: Tue, 30 Jan 2018 19:30:09 +0000 Subject: [PATCH] Test for chainAsync() --- test/chainAsync/chainAsync.test.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/test/chainAsync/chainAsync.test.js b/test/chainAsync/chainAsync.test.js index 7101ab686..e3b3bd1f9 100644 --- a/test/chainAsync/chainAsync.test.js +++ b/test/chainAsync/chainAsync.test.js @@ -6,7 +6,24 @@ test('Testing chainAsync', (t) => { //Please go to https://github.com/substack/tape t.true(typeof chainAsync === 'function', 'chainAsync is a Function'); //t.deepEqual(chainAsync(args..), 'Expected'); - //t.equal(chainAsync(args..), 'Expected'); + chainAsync([ + next => { + next(); + }, + next => { + (() =>{ + next() + })(); + }, + next => { + t.pass("Calls all functions in an array"); + next(); + } + ]); + + // Ensure we wait for the 2nd assertion to be made + t.plan(2); + //t.false(chainAsync(args..), 'Expected'); //t.throws(chainAsync(args..), 'Expected'); t.end();