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
177 B
JavaScript
6 lines
177 B
JavaScript
const expect = require('expect');
|
|
const insertAfter = require('./insertAfter.js');
|
|
|
|
test('insertAfter is a Function', () => {
|
|
expect(insertAfter).toBeInstanceOf(Function);
|
|
}); |