import { h } from 'preact'; import render from 'preact-render-to-json'; import { Search } from '../Search'; describe('', () => { beforeEach(() => { global.filterXSS = (x) => x; }); afterEach(() => { global.filterXSS = undefined; }); it('renders properly', () => { const tree = render(); expect(tree).toMatchSnapshot(); }); });