123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import {Organization} from 'sentry-fixture/organization';
- import {Repository} from 'sentry-fixture/repository';
- import {render} from 'sentry-test/reactTestingLibrary';
- import OrganizationRepositories from 'sentry/views/settings/organizationRepositories/organizationRepositories';
- describe('OrganizationRepositories', function () {
- const org = Organization();
- const router = TestStubs.router();
- const location = router.location;
- const routerProps = {router, location, routeParams: {}, routes: [], route: {}};
- it('renders without providers', function () {
- render(
- <OrganizationRepositories
- onRepositoryChange={jest.fn()}
- organization={org}
- itemList={[]}
- {...routerProps}
- />
- );
- });
- it('renders with a repository', function () {
- render(
- <OrganizationRepositories
- onRepositoryChange={jest.fn()}
- organization={org}
- itemList={[Repository()]}
- {...routerProps}
- />
- );
- });
- it('renders with a repository and github provider', function () {
- render(
- <OrganizationRepositories
- onRepositoryChange={jest.fn()}
- organization={org}
- itemList={[
- Repository({
- provider: {id: 'github', name: 'GitHub'},
- }),
- ]}
- {...routerProps}
- />
- );
- });
- });
|