UNPKG

jsdom-testing-mocks

Version:

A set of tools for emulating browser behavior in jsdom environment

15 lines (12 loc) 371 B
/** * @jest-environment node */ import { WrongEnvironmentError } from '../helper'; import { mockIntersectionObserver } from './intersection-observer'; describe('mockIntersectionObserver', () => { it('throws an error when used in a non jsdom environment', () => { expect(() => { mockIntersectionObserver(); }).toThrow(WrongEnvironmentError); }); });