triggerEvent - trigger an event on an element, insertAfter & insertBefore - parse and insert HTML after or before an element respectively, elementContains - checks if an element contains another element
6 lines
181 B
JavaScript
6 lines
181 B
JavaScript
const expect = require('expect');
|
|
const insertBefore = require('./insertBefore.js');
|
|
|
|
test('insertBefore is a Function', () => {
|
|
expect(insertBefore).toBeInstanceOf(Function);
|
|
}); |