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/add_outgoing_hook.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/add_outgoing_hook.test.jsx')
-rw-r--r-- | webapp/tests/components/integrations/add_outgoing_hook.test.jsx | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/webapp/tests/components/integrations/add_outgoing_hook.test.jsx b/webapp/tests/components/integrations/add_outgoing_hook.test.jsx deleted file mode 100644 index 0c92a7c83..000000000 --- a/webapp/tests/components/integrations/add_outgoing_hook.test.jsx +++ /dev/null @@ -1,29 +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 AddOutgoingWebhook from 'components/integrations/components/add_outgoing_webhook/add_outgoing_webhook.jsx'; - -describe('components/integrations/AddOutgoingWebhook', () => { - test('should match snapshot', () => { - function emptyFunction() {} //eslint-disable-line no-empty-function - const teamId = 'testteamid'; - - const wrapper = shallow( - <AddOutgoingWebhook - team={{ - id: teamId, - name: 'test' - }} - createOutgoingHookRequest={{ - status: 'not_started', - error: null - }} - actions={{createOutgoingHook: emptyFunction}} - /> - ); - expect(wrapper).toMatchSnapshot(); - }); -}); |