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, 0 insertions, 36 deletions
diff --git a/webapp/tests/components/integrations/edit_command.test.jsx b/webapp/tests/components/integrations/edit_command.test.jsx
deleted file mode 100644
index 6b919cb86..000000000
--- a/webapp/tests/components/integrations/edit_command.test.jsx
+++ /dev/null
@@ -1,36 +0,0 @@
-// 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