summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/add_incoming_hook.test.jsx
blob: ae5a46cb2fc9acc178155afa6148e2283e8560dd (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
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

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

 import AddIncomingWebhook from 'components/integrations/components/add_incoming_webhook/add_incoming_webhook.jsx';

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

         const wrapper = shallow(
             <AddIncomingWebhook
                 team={{
                     id: teamId,
                     name: 'test'
                 }}
                 createIncomingHookRequest={{
                     status: 'not_started',
                     error: null
                 }}
                 actions={{createIncomingHook: emptyFunction}}
             />
         );
         expect(wrapper).toMatchSnapshot();
     });
 });