import {render} from 'sentry-test/reactTestingLibrary';
import OrganizationRepositories from 'sentry/views/settings/organizationRepositories/organizationRepositories';
describe('OrganizationRepositories', function () {
const org = TestStubs.Organization();
const router = TestStubs.router();
const location = router.location;
const routerProps = {router, location, routeParams: {}, routes: [], route: {}};
it('renders without providers', function () {
const {container} = render(
);
expect(container).toSnapshot();
});
it('renders with a repository', function () {
const {container} = render(
);
expect(container).toSnapshot();
});
it('renders with a repository and github provider', function () {
const {container} = render(
);
expect(container).toSnapshot();
});
});