import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary'; import SidebarDropdown from 'sentry/components/sidebar/sidebarDropdown'; import ConfigStore from 'sentry/stores/configStore'; function renderDropdown(props) { const user = ConfigStore.get('user'); const config = ConfigStore.get('config'); const organization = TestStubs.Organization({role: 'member'}); const routerContext = TestStubs.routerContext([ { organization, }, ]); return render( , {context: routerContext} ); } describe('SidebarDropdown', function () { it('renders', function () { const {container} = renderDropdown(); expect(container).toSnapshot(); }); it('renders without org links', function () { const {container} = renderDropdown({hideOrgLinks: true}); expect(container).toSnapshot(); }); it('renders open sidebar', function () { const config = {...ConfigStore.get('config'), singleOrganization: false}; renderDropdown({collapsed: false, config}); userEvent.click(screen.getByTestId('sidebar-dropdown')); expect(screen.getByText('Switch organization')).toBeInTheDocument(); }); it('sandbox/demo mode render open sidebar', function () { ConfigStore.set('demoMode', true); const config = {...ConfigStore.get('config'), singleOrganization: false}; renderDropdown({collapsed: false, config}); userEvent.click(screen.getByTestId('sidebar-dropdown')); expect(screen.queryByText('Switch organization')).not.toBeInTheDocument(); }); });