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) --- .../__snapshots__/add_outgoing_hook.test.jsx.snap | 27 +++++++++++++++++++ .../__snapshots__/edit_outgoing_hook.test.jsx.snap | 7 +++++ .../integrations/add_outgoing_hook.test.jsx | 29 ++++++++++++++++++++ .../integrations/edit_outgoing_hook.test.jsx | 31 ++++++++++++++++++++++ 4 files changed, 94 insertions(+) create mode 100644 webapp/tests/components/integrations/__snapshots__/add_outgoing_hook.test.jsx.snap create mode 100644 webapp/tests/components/integrations/__snapshots__/edit_outgoing_hook.test.jsx.snap create mode 100644 webapp/tests/components/integrations/add_outgoing_hook.test.jsx create mode 100644 webapp/tests/components/integrations/edit_outgoing_hook.test.jsx (limited to 'webapp/tests') diff --git a/webapp/tests/components/integrations/__snapshots__/add_outgoing_hook.test.jsx.snap b/webapp/tests/components/integrations/__snapshots__/add_outgoing_hook.test.jsx.snap new file mode 100644 index 000000000..a55f5db5e --- /dev/null +++ b/webapp/tests/components/integrations/__snapshots__/add_outgoing_hook.test.jsx.snap @@ -0,0 +1,27 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`components/integrations/AddOutgoingWebhook should match snapshot 1`] = ` + +`; diff --git a/webapp/tests/components/integrations/__snapshots__/edit_outgoing_hook.test.jsx.snap b/webapp/tests/components/integrations/__snapshots__/edit_outgoing_hook.test.jsx.snap new file mode 100644 index 000000000..d7656b08f --- /dev/null +++ b/webapp/tests/components/integrations/__snapshots__/edit_outgoing_hook.test.jsx.snap @@ -0,0 +1,7 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`components/integrations/EditOutgoingWebhook should match snapshot 1`] = ` + +`; diff --git a/webapp/tests/components/integrations/add_outgoing_hook.test.jsx b/webapp/tests/components/integrations/add_outgoing_hook.test.jsx new file mode 100644 index 000000000..0c92a7c83 --- /dev/null +++ b/webapp/tests/components/integrations/add_outgoing_hook.test.jsx @@ -0,0 +1,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 AddOutgoingWebhook from 'components/integrations/components/add_outgoing_webhook/add_outgoing_webhook.jsx'; + +describe('components/integrations/AddOutgoingWebhook', () => { + test('should match snapshot', () => { + function emptyFunction() {} //eslint-disable-line no-empty-function + const teamId = 'testteamid'; + + const wrapper = shallow( + + ); + expect(wrapper).toMatchSnapshot(); + }); +}); 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