import {OrganizationFixture} from 'sentry-fixture/organization';
import {initializeOrg} from 'sentry-test/initializeOrg';
import {BreadcrumbContextProvider} from 'sentry-test/providers/breadcrumbContextProvider';
import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
import SettingsLayout from 'sentry/views/settings/components/settingsLayout';
describe('SettingsLayout', function () {
const {routerProps} = initializeOrg();
beforeEach(function () {
MockApiClient.clearMockResponses();
MockApiClient.addMockResponse({
url: '/internal/health/',
body: {
problems: [],
},
});
MockApiClient.addMockResponse({
url: '/organizations/',
body: [OrganizationFixture()],
});
MockApiClient.addMockResponse({
url: '/organizations/org-slug/',
method: 'DELETE',
statusCode: 401,
body: {
sudoRequired: true,
},
});
MockApiClient.addMockResponse({
url: '/authenticators/',
body: [],
});
});
function getTestnav() {
return screen.queryByRole('navigation', {name: 'Test Nav'});
}
it('renders', function () {
render(
content
);
});
it('can render navigation', function () {
render(
}
>
content
);
expect(getTestnav()).toBeInTheDocument();
});
it('can toggle mobile navigation', async function () {
render(
opts.isMobileNavVisible ? : null
}
>
content
);
expect(getTestnav()).not.toBeInTheDocument();
await userEvent.click(screen.getByRole('button', {name: 'Open the menu'}));
expect(getTestnav()).toBeInTheDocument();
});
});