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