add 2 tests, nthElement & objectFromPairs

This commit is contained in:
Stefan Feješ
2018-01-10 14:30:17 +01:00
parent 2ac592971c
commit 6ded0be9ff
2 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,8 @@ test('Testing nthElement', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof nthElement === 'function', 'nthElement is a Function');
t.equal(nthElement(['a', 'b', 'c'], 1), 'b', "Returns the nth element of an array.");
t.equal(nthElement(['a', 'b', 'c'], -3), 'a', "Returns the nth element of an array.");
//t.deepEqual(nthElement(args..), 'Expected');
//t.equal(nthElement(args..), 'Expected');
//t.false(nthElement(args..), 'Expected');

View File

@ -5,6 +5,7 @@ test('Testing objectFromPairs', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof objectFromPairs === 'function', 'objectFromPairs is a Function');
t.deepEqual(objectFromPairs([['a', 1], ['b', 2]]), {a: 1, b: 2}, "Creates an object from the given key-value pairs.");
//t.deepEqual(objectFromPairs(args..), 'Expected');
//t.equal(objectFromPairs(args..), 'Expected');
//t.false(objectFromPairs(args..), 'Expected');