Fixed error prone checking etc in codebase

This commit is contained in:
Angelos Chalaris
2018-02-04 17:48:07 +02:00
parent 89f572efbc
commit c6c49ab567
18 changed files with 25 additions and 25 deletions

View File

@ -5,10 +5,10 @@ test('Testing remove', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof remove === 'function', 'remove is a Function');
t.deepEqual(remove([1, 2, 3, 4], n => n % 2 == 0), [2, 4], "Removes elements from an array for which the given function returns false");
t.deepEqual(remove([1, 2, 3, 4], n => n % 2 === 0), [2, 4], "Removes elements from an array for which the given function returns false");
//t.deepEqual(remove(args..), 'Expected');
//t.equal(remove(args..), 'Expected');
//t.false(remove(args..), 'Expected');
//t.throws(remove(args..), 'Expected');
t.end();
});
});