summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
blob: c2a5020a6cdf2804eaef0d23f5420bcba95189d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';
import {shallow} from 'enzyme';

import EditOutgoingWebhook from 'components/integrations/components/edit_outgoing_webhook/edit_outgoing_webhook.jsx';

describe('components/integrations/EditOutgoingWebhook', () => {
    test('should match snapshot', () => {
        function emptyFunction() {} //eslint-disable-line no-empty-function
        const teamId = 'testteamid';

        const wrapper = shallow(
            <EditOutgoingWebhook
                team={{
                    id: teamId,
                    name: 'test'
                }}
                hookId={'somehookid'}
                updateOutgoingHookRequest={{
                    status: 'not_started',
                    error: null
                }}
                actions={{updateOutgoingHook: emptyFunction, getOutgoingHook: emptyFunction}}
            />
        );
        expect(wrapper).toMatchSnapshot();
    });
});