-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMultiValue.test.tsx
53 lines (44 loc) · 1.75 KB
/
MultiValue.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import React, { type ComponentProps } from 'react';
import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { CLEAR_ICON_MV_TESTID } from '../src/constants';
import MultiValue from '../src/components/Value/MultiValue';
import { renderOptionLabelMock, getOptionSingle, ThemeWrapper, type Option } from './helpers';
type MultiValueProps = ComponentProps<typeof MultiValue>;
// ============================================
// Helper functions for MultiValue component
// ============================================
const renderMultiValue = (props: MultiValueProps) => {
return {
user: userEvent.setup(),
...render(
<ThemeWrapper>
<MultiValue {...props} />
</ThemeWrapper>
)
};
};
const removeSelectedOptionSpy = jest.fn();
const renderOptionLabelSpy = renderOptionLabelMock;
const data: Option = getOptionSingle();
const BASE_PROPS: MultiValueProps = {
data,
isFocused: false,
value: data.value,
renderOptionLabel: renderOptionLabelSpy,
removeSelectedOption: removeSelectedOptionSpy
} as const;
// ============================================
// Test cases
// ============================================
test('"renderOptionLabel" callback should be executed and should render the selected option label text', () => {
const { getByText } = renderMultiValue(BASE_PROPS);
expect(renderOptionLabelSpy).toBeCalled();
expect(getByText(BASE_PROPS.data.label)).toBeInTheDocument();
});
test('clear indicator has functioning "click" user events', async () => {
const { user, getAllByTestId } = renderMultiValue(BASE_PROPS);
const firstClearIconEl = getAllByTestId(CLEAR_ICON_MV_TESTID!)[0];
await user.click(firstClearIconEl);
expect(removeSelectedOptionSpy).toBeCalled();
});