import {ApiTokenFixture} from 'sentry-fixture/apiToken'; import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary'; import ApiTokenRow from 'sentry/views/settings/account/apiTokenRow'; describe('ApiTokenRow', () => { it('renders', () => { render( {}} token={ApiTokenFixture()} />); }); it('calls onRemove callback when trash can is clicked', async () => { const cb = jest.fn(); render(); await userEvent.click(screen.getByLabelText('Remove')); expect(cb).toHaveBeenCalled(); }); it('uses NewTokenHandler when lastTokenCharacters field is found', () => { const token = ApiTokenFixture(); token.tokenLastCharacters = 'a1b2c3d4'; const cb = jest.fn(); render(); expect(screen.queryByLabelText('Token preview')).toBeInTheDocument(); }); });