123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import ProjectUserFeedback from 'sentry/views/settings/project/projectUserFeedback';
- describe('ProjectUserFeedback', function () {
- const {routerProps, organization, project, routerContext} = initializeOrg();
- const url = `/projects/${organization.slug}/${project.slug}/`;
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url,
- method: 'GET',
- body: TestStubs.Project(),
- });
- MockApiClient.addMockResponse({
- url: `${url}keys/`,
- method: 'GET',
- body: [],
- });
- });
- it('can toggle sentry branding option', async function () {
- render(
- <ProjectUserFeedback
- {...routerProps}
- organization={organization}
- project={project}
- />,
- {
- context: routerContext,
- }
- );
- const mock = MockApiClient.addMockResponse({
- url,
- method: 'PUT',
- });
- // Click Regenerate Token
- await userEvent.click(screen.getByRole('checkbox', {name: 'Show Sentry Branding'}));
- expect(mock).toHaveBeenCalledWith(
- url,
- expect.objectContaining({
- method: 'PUT',
- data: {
- options: {'feedback:branding': true},
- },
- })
- );
- });
- });
|