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