We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e78943 commit fe07192Copy full SHA for fe07192
1 file changed
tests/Combobox.test.tsx
@@ -31,8 +31,6 @@ describe('Select.Combobox', () => {
31
keyDownTest('combobox');
32
openControlledTest('combobox');
33
34
- return;
35
-
36
it('renders correctly', () => {
37
const { container } = render(
38
<Select mode="combobox" placeholder="Search">
@@ -84,6 +82,8 @@ describe('Select.Combobox', () => {
84
82
expect(container.querySelector('input')!.value).toBe('1');
85
83
});
86
+ return;
+
87
it('fire change event immediately when user inputing', () => {
88
const handleChange = jest.fn();
89
0 commit comments