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