Tests for fileLines, runAsync, promisesInSeries

This commit is contained in:
Angelos Chalaris
2018-02-09 13:40:08 +02:00
parent f926ebeff7
commit 651ef3cedb
4 changed files with 15 additions and 8 deletions

View File

@ -5,9 +5,10 @@ test('Testing runAsync', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof runAsync === 'function', 'runAsync is a Function');
t.pass('Tested on 09/02/2018 by @chalarangelo');
//t.deepEqual(runAsync(args..), 'Expected');
//t.equal(runAsync(args..), 'Expected');
//t.false(runAsync(args..), 'Expected');
//t.throws(runAsync(args..), 'Expected');
t.end();
});
});