7 lines
198 B
JavaScript
7 lines
198 B
JavaScript
const expect = require('expect');
|
|
const detectDeviceType = require('./detectDeviceType.js');
|
|
|
|
test('detectDeviceType is a Function', () => {
|
|
expect(detectDeviceType).toBeInstanceOf(Function);
|
|
});
|