UNPKG

@wonderflow/react-components

Version:

UI components from Wonderflow's Wanda design system

10 lines (9 loc) 331 B
import { jsx as _jsx } from "react/jsx-runtime"; import { render } from '@testing-library/react'; import { Separator } from './separator'; describe('<Separator>', () => { test(' it should render properly', () => { const { container } = render(_jsx(Separator, {})); expect(container).not.toBeNull(); }); });