From 6ec24867bc75057fa58c11e80a6b28334473983b Mon Sep 17 00:00:00 2001 From: 94117nl Date: Mon, 31 Jul 2017 07:26:04 -0500 Subject: GH-6448 Migrate edit_command.jsx to be pure and use Redux (#6858) * Migrate edit_command.jsx to be pure and use Redux, add basic test * Update newCommand to reference modified command * Fix typo * Remove unnecessary re-renders --- .../__snapshots__/edit_command.test.jsx.snap | 424 +++++++++++++++++++++ .../components/integrations/edit_command.test.jsx | 36 ++ 2 files changed, 460 insertions(+) create mode 100644 webapp/tests/components/integrations/__snapshots__/edit_command.test.jsx.snap create mode 100644 webapp/tests/components/integrations/edit_command.test.jsx (limited to 'webapp/tests/components') diff --git a/webapp/tests/components/integrations/__snapshots__/edit_command.test.jsx.snap b/webapp/tests/components/integrations/__snapshots__/edit_command.test.jsx.snap new file mode 100644 index 000000000..dd4fcffef --- /dev/null +++ b/webapp/tests/components/integrations/__snapshots__/edit_command.test.jsx.snap @@ -0,0 +1,424 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`components/integrations/EditCommand should match snapshot 1`] = ` +
+ + + + + + +
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+ +
+
+ + + , + } + } + /> +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ + + + + + + + + } + message={ + + } + onCancel={[Function]} + onConfirm={[Function]} + show={false} + title={ + + } + /> +
+
+
+
+`; diff --git a/webapp/tests/components/integrations/edit_command.test.jsx b/webapp/tests/components/integrations/edit_command.test.jsx new file mode 100644 index 000000000..6b919cb86 --- /dev/null +++ b/webapp/tests/components/integrations/edit_command.test.jsx @@ -0,0 +1,36 @@ +// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +import React from 'react'; +import {shallow} from 'enzyme'; + +import EditCommand from 'components/integrations/components/edit_command/edit_command.jsx'; + +describe('components/integrations/EditCommand', () => { + test('should match snapshot', () => { + const emptyFunction = jest.fn(); + const id = 'r5tpgt4iepf45jt768jz84djic'; + global.window.mm_config = {}; + global.window.mm_config.EnableCommands = 'true'; + + const wrapper = shallow( + + ); + expect(wrapper).toMatchSnapshot(); + }); +}); \ No newline at end of file -- cgit v1.2.3-1-g7c22