summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/add_command.test.jsx
diff options
context:
space:
mode:
author94117nl <rttededersixtwo@gmail.com>2017-07-04 07:58:45 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2017-07-04 08:58:45 -0400
commit29b98ec383e47f28e7e190434f872072815cb6cb (patch)
treea052a0771163f3ddb6a0724b4fd846505e899235 /webapp/tests/components/integrations/add_command.test.jsx
parent0b112999b55c51b0a942c2b9439453b061ffce3c (diff)
downloadchat-29b98ec383e47f28e7e190434f872072815cb6cb.tar.gz
chat-29b98ec383e47f28e7e190434f872072815cb6cb.tar.bz2
chat-29b98ec383e47f28e7e190434f872072815cb6cb.zip
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
Diffstat (limited to 'webapp/tests/components/integrations/add_command.test.jsx')
-rw-r--r--webapp/tests/components/integrations/add_command.test.jsx30
1 files changed, 30 insertions, 0 deletions
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(
+ <AddCommand
+ team={{
+ id: teamId,
+ name: 'test'
+ }}
+ addCommandRequest={{
+ status: 'not_started',
+ error: null
+ }}
+ actions={{addCommand: emptyFunction}}
+ />
+ );
+ expect(wrapper).toMatchSnapshot();
+ });
+});