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