Test for chainAsync()
This commit is contained in:
@ -6,7 +6,24 @@ test('Testing chainAsync', (t) => {
|
|||||||
//Please go to https://github.com/substack/tape
|
//Please go to https://github.com/substack/tape
|
||||||
t.true(typeof chainAsync === 'function', 'chainAsync is a Function');
|
t.true(typeof chainAsync === 'function', 'chainAsync is a Function');
|
||||||
//t.deepEqual(chainAsync(args..), 'Expected');
|
//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.false(chainAsync(args..), 'Expected');
|
||||||
//t.throws(chainAsync(args..), 'Expected');
|
//t.throws(chainAsync(args..), 'Expected');
|
||||||
t.end();
|
t.end();
|
||||||
|
|||||||
Reference in New Issue
Block a user