@wonderflow/react-components
Version:
UI components from Wonderflow's Wanda design system
10 lines (9 loc) • 377 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { render } from '@testing-library/react';
import { SplitButton } from './split-button';
describe('<SplitButton>', () => {
test(' it should render properly', () => {
const { container } = render(_jsx(SplitButton, { label: "My Label", children: "Text" }));
expect(container).not.toBeNull();
});
});