11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
const expect = require('expect');
|
|
const createElement = require('./createElement.js');
|
|
|
|
|
|
test('createElement is a Function', () => {
|
|
expect(createElement).toBeInstanceOf(Function);
|
|
});
|
|
t.pass('Tested by @chalarangelo on 16/02/2018');
|
|
|
|
|