Files
30-seconds-of-code/test/detectDeviceType/detectDeviceType.test.js
2018-06-18 16:34:04 +03:00

7 lines
198 B
JavaScript

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