redux-devtools/packages/redux-devtools-ui/test/Select.test.tsx
renovate[bot] e9da5fc411
fix(deps): update react (major) (#1165)
* fix(deps): update react

* Fix

* Use createRoot

* Update tests

* Format

* Fix test

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2022-06-06 16:22:05 +00:00

64 lines
1.7 KiB
TypeScript

import React from 'react';
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { Select } from '../src';
import { options } from '../src/Select/options';
describe('Select', function () {
it('renders correctly', () => {
const { container } = render(
<Select
options={options}
onChange={() => {
// noop
}}
/>
);
expect(container.firstChild).toMatchSnapshot();
});
it('renders with props', () => {
const { container } = render(
<Select
options={options}
onChange={() => {
// noop
}}
value={options.filter((option) => option.value === 'one')}
maxMenuHeight={20}
isClearable
isDisabled
isLoading
isMulti
isSearchable={false}
menuPlacement="top"
/>
);
expect(container.firstChild).toMatchSnapshot();
});
it('should select another option', async () => {
const onChange = jest.fn();
const { container } = render(
<Select options={options} onChange={onChange} />
);
await userEvent.type(screen.getByRole('combobox'), 'two');
expect(container.firstChild).toMatchSnapshot();
await userEvent.type(screen.getByRole('combobox'), '{enter}');
expect(onChange).toHaveBeenCalled();
});
it("shouldn't find any results", async () => {
const onChange = jest.fn();
const { container } = render(
<Select options={options} onChange={onChange} />
);
await userEvent.type(screen.getByRole('combobox'), 'text');
expect(container.firstChild).toMatchSnapshot();
await userEvent.type(screen.getByRole('combobox'), '{enter}');
expect(onChange).not.toHaveBeenCalled();
});
});