Files
30-seconds-of-code/test/isBrowser/isBrowser.test.js
2018-06-18 17:31:56 +03:00

7 lines
170 B
JavaScript

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