Skip to content

Commit 2c72c85

Browse files
committed
chore: rename tests
1 parent d844085 commit 2c72c85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/react-ui/components/ComboBox/__tests__/ComboBox-test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ describe('ComboBox', () => {
144144
expect(onValueChange).toHaveBeenCalledTimes(1);
145145
});
146146

147-
it('not selects item on enter when search is empty', async () => {
147+
it('not auto selecting an item on entry when the search is empty', async () => {
148148
const items = ['Item 1', 'Item 2', 'Item 3'];
149149
const onValueChange = jest.fn();
150150
render(
@@ -165,7 +165,7 @@ describe('ComboBox', () => {
165165
expect(onValueChange).not.toHaveBeenCalled();
166166
});
167167

168-
it('selects first item on enter when search find multiple items', async () => {
168+
it('selects the first item when search found multiple items', async () => {
169169
const items = ['Item 1', 'Item 2', 'Item 3'];
170170
const onValueChange = jest.fn();
171171
render(

0 commit comments

Comments
 (0)