diff --git a/packages/ui/src/components/form/controls/Select/Select.test.tsx b/packages/ui/src/components/form/controls/Select/Select.test.tsx index 0490725..224ee52 100644 --- a/packages/ui/src/components/form/controls/Select/Select.test.tsx +++ b/packages/ui/src/components/form/controls/Select/Select.test.tsx @@ -33,4 +33,18 @@ describe('Select', () => { expect(onChange).toHaveBeenCalledWith('2') }) + + it('calls onNativeChange with the select change event', async () => { + const user = userEvent.setup() + const onNativeChange = vi.fn() + + const { getByRole } = render( +