summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/integrations/edit_command.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/components/integrations/edit_command.test.jsx')
-rw-r--r--webapp/tests/components/integrations/edit_command.test.jsx36
1 files changed, 36 insertions, 0 deletions
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(
+ <EditCommand
+ team={{
+ id,
+ name: 'test'
+ }}
+ commandId={id}
+ commands={[]}
+ editCommandRequest={{
+ status: 'not_started',
+ error: null
+ }}
+ actions={{
+ getCustomTeamCommands: emptyFunction,
+ editCommand: emptyFunction
+ }}
+ />
+ );
+ expect(wrapper).toMatchSnapshot();
+ });
+}); \ No newline at end of file