12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
|
|
import { isBrowser } from '../env';
|
|
|
|
describe('isBrowser', () => {
|
|
it('should be browser', () => {
|
|
expect(isBrowser).toBe(true);
|
|
});
|
|
});
|