run npm tester | no errors and all test passes
This commit is contained in:
5
test/dropWhile/dropWhile.js
Normal file
5
test/dropWhile/dropWhile.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
const dropWhile = (arr, func) => {
|
||||||
|
while (arr.length > 0 && !func(arr[0])) arr = arr.slice(1);
|
||||||
|
return arr;
|
||||||
|
};
|
||||||
|
module.exports = dropWhile
|
||||||
13
test/dropWhile/dropWhile.test.js
Normal file
13
test/dropWhile/dropWhile.test.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
const test = require('tape');
|
||||||
|
const dropWhile = require('./dropWhile.js');
|
||||||
|
|
||||||
|
test('Testing dropWhile', (t) => {
|
||||||
|
//For more information on all the methods supported by tape
|
||||||
|
//Please go to https://github.com/substack/tape
|
||||||
|
t.true(typeof dropWhile === 'function', 'dropWhile is a Function');
|
||||||
|
//t.deepEqual(dropWhile(args..), 'Expected');
|
||||||
|
//t.equal(dropWhile(args..), 'Expected');
|
||||||
|
//t.false(dropWhile(args..), 'Expected');
|
||||||
|
//t.throws(dropWhile(args..), 'Expected');
|
||||||
|
t.end();
|
||||||
|
});
|
||||||
1518
test/testlog
1518
test/testlog
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user