| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import React from 'react';
- import { shallow } from 'enzyme';
- import { TeamPages, Props } from './TeamPages';
- import { NavModel, Team } from '../../types';
- import { getMockTeam } from './__mocks__/teamMocks';
- jest.mock('app/core/config', () => ({
- buildInfo: { isEnterprise: true },
- }));
- const setup = (propOverrides?: object) => {
- const props: Props = {
- navModel: {} as NavModel,
- teamId: 1,
- loadTeam: jest.fn(),
- pageName: 'members',
- team: {} as Team,
- };
- Object.assign(props, propOverrides);
- const wrapper = shallow(<TeamPages {...props} />);
- const instance = wrapper.instance();
- return {
- wrapper,
- instance,
- };
- };
- describe('Render', () => {
- it('should render component', () => {
- const { wrapper } = setup();
- expect(wrapper).toMatchSnapshot();
- });
- it('should render member page if team not empty', () => {
- const { wrapper } = setup({
- team: getMockTeam(),
- });
- expect(wrapper).toMatchSnapshot();
- });
- it('should render settings and preferences page', () => {
- const { wrapper } = setup({
- team: getMockTeam(),
- pageName: 'settings',
- preferences: {
- homeDashboardId: 1,
- theme: 'Default',
- timezone: 'Default',
- },
- });
- expect(wrapper).toMatchSnapshot();
- });
- it('should render group sync page', () => {
- const { wrapper } = setup({
- team: getMockTeam(),
- pageName: 'groupsync',
- });
- expect(wrapper).toMatchSnapshot();
- });
- });
|