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