Files
30-seconds-of-code/test/nodeListToArray/nodeListToArray.test.js
Angelos Chalaris e8ecfc7085 Add nodeListToArray
2018-05-06 18:11:21 +03:00

13 lines
542 B
JavaScript

const test = require('tape');
const nodeListToArray = require('./nodeListToArray.js');
test('Testing nodeListToArray', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof nodeListToArray === 'function', 'nodeListToArray is a Function');
//t.deepEqual(nodeListToArray(args..), 'Expected');
//t.equal(nodeListToArray(args..), 'Expected');
//t.false(nodeListToArray(args..), 'Expected');
//t.throws(nodeListToArray(args..), 'Expected');
t.end();
});