mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
* creating types, actions, reducer * load teams and store in redux * delete team * set search query action and tests * Teampages page * team members, bug in fetching team * flattened team state, tests for TeamMembers * test for team member selector * team settings * actions for group sync * tests for team groups * removed comment * remove old stores * fix: formating of datasource.go * fix: minor changes to imports * adding debounce and fixing issue in teamlist * refactoring: moving types to their own files
45 lines
986 B
TypeScript
45 lines
986 B
TypeScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { Props, TeamSettings } from './TeamSettings';
|
|
import { getMockTeam } from './__mocks__/teamMocks';
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
team: getMockTeam(),
|
|
updateTeam: jest.fn(),
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
const wrapper = shallow(<TeamSettings {...props} />);
|
|
const instance = wrapper.instance() as TeamSettings;
|
|
|
|
return {
|
|
wrapper,
|
|
instance,
|
|
};
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
const { wrapper } = setup();
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('Functions', () => {
|
|
it('should update team', () => {
|
|
const { instance } = setup();
|
|
const mockEvent = { preventDefault: jest.fn() };
|
|
|
|
instance.setState({
|
|
name: 'test11',
|
|
});
|
|
|
|
instance.onUpdate(mockEvent);
|
|
|
|
expect(instance.props.updateTeam).toHaveBeenCalledWith('test11', 'test@test.com');
|
|
});
|
|
});
|