12345678910111213141516171819202122232425262728293031323334 |
- import {GroupIntegration} from 'sentry/types';
- export function JiraIntegrationFixture(
- params: Partial<GroupIntegration> = {}
- ): GroupIntegration {
- return {
- domainName: 'jira.com/test-integration',
- icon: 'http://jira.example.com/integration_icon.png',
- id: '2',
- name: 'Jira Test Integration',
- provider: {
- name: 'Jira',
- key: 'jira',
- canAdd: true,
- features: [],
- aspects: {
- alerts: [
- {
- type: 'warning',
- text: 'This is a an alert example',
- },
- ],
- },
- canDisable: false,
- slug: '',
- },
- accountType: '',
- gracePeriodEnd: '',
- organizationIntegrationStatus: 'active',
- status: 'active',
- externalIssues: [],
- ...params,
- };
- }
|