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