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