summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/components/integrations/edit_outgoing_hook.test.jsx')
-rw-r--r--webapp/tests/components/integrations/edit_outgoing_hook.test.jsx31
1 files changed, 0 insertions, 31 deletions
diff --git a/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx b/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
deleted file mode 100644
index c2a5020a6..000000000
--- a/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
+++ /dev/null
@@ -1,31 +0,0 @@
-// 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();
- });
-});
-