Files
30-seconds-of-code/test/hashBrowser.test.js
2018-10-19 20:18:00 +03:00

7 lines
173 B
JavaScript

const expect = require('expect');
const {hashBrowser} = require('./_30s.js');
test('hashBrowser is a Function', () => {
expect(hashBrowser).toBeInstanceOf(Function);
});