import { h } from 'preact'; import render from 'preact-render-to-json'; import { SnackbarItem } from '..'; describe('', () => { it('should render with just a message', () => { const tree = render(); expect(tree).toMatchSnapshot(); }); it('should render with one action', () => { const tree = render( , ); expect(tree).toMatchSnapshot(); }); it('should render with multiple actions', () => { const tree = render( , ); expect(tree).toMatchSnapshot(); }); });