summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/edit_incoming_hook.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/components/integrations/edit_incoming_hook.test.jsx')
-rw-r--r--webapp/tests/components/integrations/edit_incoming_hook.test.jsx30
1 files changed, 0 insertions, 30 deletions
diff --git a/webapp/tests/components/integrations/edit_incoming_hook.test.jsx b/webapp/tests/components/integrations/edit_incoming_hook.test.jsx
deleted file mode 100644
index cb7544314..000000000
--- a/webapp/tests/components/integrations/edit_incoming_hook.test.jsx
+++ /dev/null
@@ -1,30 +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 EditIncomingWebhook from 'components/integrations/components/edit_incoming_webhook/edit_incoming_webhook.jsx';
-
- describe('components/integrations/EditIncomingWebhook', () => {
- test('should match snapshot', () => {
- function emptyFunction() {} //eslint-disable-line no-empty-function
- const teamId = 'testteamid';
-
- const wrapper = shallow(
- <EditIncomingWebhook
- team={{
- id: teamId,
- name: 'test'
- }}
- hookId={'somehookid'}
- updateIncomingHookRequest={{
- status: 'not_started',
- error: null
- }}
- actions={{updateIncomingHook: emptyFunction, getIncomingHook: emptyFunction}}
- />
- );
- expect(wrapper).toMatchSnapshot();
- });
- });