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 1463a89 commit ab00b87Copy full SHA for ab00b87
src/components/Select/Select.spec.js
@@ -38,7 +38,7 @@ describe('<Select />', () => {
38
expect(getByRole('button')).toHaveProperty('tabIndex', 1);
39
});
40
it('should accept null child', () => {
41
- renderWithTheme(<Select value={10} options={[options, null]} />);
+ renderWithTheme(<Select value={10} options={[...options, null]} />);
42
43
it('should have an input with [type="hidden"] by default', () => {
44
const { container } = renderWithTheme(
0 commit comments