import * as React from 'react'; import { describe, it, expect, jest } from '@jest/globals'; import { fireEvent, render, screen, waitFor } from '@testing-library/react-native'; import '@testing-library/jest-native'; import Dropdown, { DropdownListItem } from './Dropdown'; describe('Dropdown', () => { it('should open the dropdown on click', async () => { const items: DropdownListItem[] = []; for (let i = 0; i < 400; i++) { items.push({ label: `Item ${i}`, value: `${i}` }); } const onValueChange = jest.fn(); render( , ); // Should initially not show any other items expect(screen.queryByText('Item 3')).toBeNull(); expect(screen.queryByText('Item 4')).toBeNull(); const openButton = screen.getByText('Item 1'); fireEvent.press(openButton); // Other items should now be shown await waitFor(() => { expect(screen.getByText('Item 3')).not.toBeNull(); expect(screen.getByText('Item 4')).not.toBeNull(); }); // Pressing one of these items should hide the dropdown fireEvent.press(screen.getByText('Item 4')); // We haven't changed the selectedValue, so Item 301 should no longer be visible await waitFor(() => { expect(screen.queryByText('Item 4')).toBeNull(); }); expect(onValueChange).toHaveBeenLastCalledWith('4'); // The dropdown should still be clickable fireEvent.press(screen.getByText('Item 1')); await waitFor(() => { expect(screen.queryByText('Item 2')).not.toBeNull(); }); }); });