diff options
author | Christopher Speller <crspeller@gmail.com> | 2017-09-06 23:04:13 -0700 |
---|---|---|
committer | Christopher Speller <crspeller@gmail.com> | 2017-09-06 23:11:58 -0700 |
commit | d8bd57901e33a7057e26e782e295099ffcc0da89 (patch) | |
tree | e12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/tests/components/integrations/edit_command.test.jsx | |
parent | 7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff) | |
download | chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2 chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip |
Removing webapp
Diffstat (limited to 'webapp/tests/components/integrations/edit_command.test.jsx')
-rw-r--r-- | webapp/tests/components/integrations/edit_command.test.jsx | 36 |
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 |