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