import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary'; import {descopeFeatureName} from 'sentry/utils'; import ProviderItem from 'sentry/views/settings/organizationAuth/providerItem'; describe('ProviderItem', function () { const provider = TestStubs.AuthProviders()[0]; const org = TestStubs.Organization({ features: [descopeFeatureName(provider.requiredFeature)], }); const routerContext = TestStubs.routerContext([{organization: org}]); it('renders', function () { render( {}} />, { context: routerContext, }); expect( screen.getByText('Enable your organization to sign in with Dummy.') ).toBeInTheDocument(); }); it('calls configure callback', async function () { const mock = jest.fn(); render(, { context: routerContext, }); await userEvent.click(screen.getByRole('button', {name: 'Configure'})); expect(mock).toHaveBeenCalledWith('dummy', expect.anything()); }); it('renders a disabled Tag when disabled', function () { const noFeatureRouterContext = TestStubs.routerContext(); render( {}} />, { context: noFeatureRouterContext, }); expect(screen.getByRole('status')).toHaveTextContent('disabled'); }); });