summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-07-10 17:43:47 -0400
committerGitHub <noreply@github.com>2017-07-10 17:43:47 -0400
commit0cc60abf6a33dca0d8317481f83d0eb2771f43a1 (patch)
tree8e56bd479017bacae44e859c743c16080839240d /webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
parent6330f7f6377a4a8af956399ed299300f3d98a7a6 (diff)
downloadchat-0cc60abf6a33dca0d8317481f83d0eb2771f43a1.tar.gz
chat-0cc60abf6a33dca0d8317481f83d0eb2771f43a1.tar.bz2
chat-0cc60abf6a33dca0d8317481f83d0eb2771f43a1.zip
Migrate add and edit outgoing webhook components to redux (#6818)
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, 31 insertions, 0 deletions
diff --git a/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx b/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
new file mode 100644
index 000000000..c2a5020a6
--- /dev/null
+++ b/webapp/tests/components/integrations/edit_outgoing_hook.test.jsx
@@ -0,0 +1,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();
+ });
+});
+