7 lines
185 B
JavaScript
7 lines
185 B
JavaScript
const expect = require('expect');
|
|
const {nodeListToArray} = require('./_30s.js');
|
|
|
|
test('nodeListToArray is a Function', () => {
|
|
expect(nodeListToArray).toBeInstanceOf(Function);
|
|
});
|