1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import React from 'react';
- import {shallow} from 'enzyme';
- import {Client} from 'app/api';
- import OrganizationRepositories from 'app/views/settings/organization/repositories/organizationRepositories';
- describe('OrganizationRepositories', function() {
- it('renders without providers', function() {
- let wrapper = shallow(
- <OrganizationRepositories
- params={{orgId: 'org-slug'}}
- itemList={[]}
- repoConfig={{}}
- />
- );
- expect(wrapper).toMatchSnapshot();
- });
- it('renders with github provider', function() {
- let wrapper = shallow(
- <OrganizationRepositories
- params={{orgId: 'org-slug'}}
- repoConfig={{providers: [TestStubs.GitHubRepositoryProvider()]}}
- itemList={[]}
- />
- );
- expect(wrapper).toMatchSnapshot();
- });
- it('renders with a repository', function() {
- Client.addMockResponse({
- url: '/organizations/org-slug/repos/',
- body: [TestStubs.Repository()],
- });
- let wrapper = shallow(
- <OrganizationRepositories
- params={{orgId: 'org-slug'}}
- repoConfig={{providers: [TestStubs.GitHubRepositoryProvider()]}}
- itemList={[TestStubs.Repository()]}
- />
- );
- expect(wrapper).toMatchSnapshot();
- });
- });
|