Files
30-seconds-of-code/test/detectDeviceType/detectDeviceType.test.js
2018-06-18 15:54:48 +03:00

11 lines
208 B
JavaScript

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