From 0cc60abf6a33dca0d8317481f83d0eb2771f43a1 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Mon, 10 Jul 2017 17:43:47 -0400 Subject: Migrate add and edit outgoing webhook components to redux (#6818) --- .../integrations/edit_outgoing_hook.test.jsx | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 webapp/tests/components/integrations/edit_outgoing_hook.test.jsx (limited to 'webapp/tests/components/integrations/edit_outgoing_hook.test.jsx') 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( + + ); + expect(wrapper).toMatchSnapshot(); + }); +}); + -- cgit v1.2.3-1-g7c22