From 29b98ec383e47f28e7e190434f872072815cb6cb Mon Sep 17 00:00:00 2001 From: 94117nl Date: Tue, 4 Jul 2017 07:58:45 -0500 Subject: PLT-6445 Migrate add_command.jsx to be pure and use Redux (#6804) * Migrate add_command.jsx to be pure and use redux * Add basic test for AddCommand component --- .../__snapshots__/add_command.test.jsx.snap | 396 +++++++++++++++++++++ .../components/integrations/add_command.test.jsx | 30 ++ 2 files changed, 426 insertions(+) create mode 100644 webapp/tests/components/integrations/__snapshots__/add_command.test.jsx.snap create mode 100644 webapp/tests/components/integrations/add_command.test.jsx (limited to 'webapp/tests') diff --git a/webapp/tests/components/integrations/__snapshots__/add_command.test.jsx.snap b/webapp/tests/components/integrations/__snapshots__/add_command.test.jsx.snap new file mode 100644 index 000000000..99e5d7ad8 --- /dev/null +++ b/webapp/tests/components/integrations/__snapshots__/add_command.test.jsx.snap @@ -0,0 +1,396 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`components/integrations/AddCommand should match snapshot 1`] = ` +
+ + + + + + +
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+ +
+
+ + + , + } + } + /> +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ + + + + + + +
+
+
+
+`; diff --git a/webapp/tests/components/integrations/add_command.test.jsx b/webapp/tests/components/integrations/add_command.test.jsx new file mode 100644 index 000000000..cf8a31e07 --- /dev/null +++ b/webapp/tests/components/integrations/add_command.test.jsx @@ -0,0 +1,30 @@ +// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +import React from 'react'; +import {shallow} from 'enzyme'; + +import * as Utils from 'utils/utils.jsx'; +import AddCommand from 'components/integrations/components/add_command/add_command.jsx'; + +describe('components/integrations/AddCommand', () => { + test('should match snapshot', () => { + function emptyFunction() {} //eslint-disable-line no-empty-function + const teamId = Utils.generateId(); + + const wrapper = shallow( + + ); + expect(wrapper).toMatchSnapshot(); + }); +}); -- cgit v1.2.3-1-g7c22