summaryrefslogtreecommitdiffstats
path: root/webapp/tests/components/new_channel_modal.test.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/tests/components/new_channel_modal.test.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/tests/components/new_channel_modal.test.jsx')
-rw-r--r--webapp/tests/components/new_channel_modal.test.jsx79
1 files changed, 0 insertions, 79 deletions
diff --git a/webapp/tests/components/new_channel_modal.test.jsx b/webapp/tests/components/new_channel_modal.test.jsx
deleted file mode 100644
index 358a839a3..000000000
--- a/webapp/tests/components/new_channel_modal.test.jsx
+++ /dev/null
@@ -1,79 +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 Constants from 'utils/constants.jsx';
-
-import NewChannelModal from 'components/new_channel_modal/new_channel_modal.jsx';
-
-describe('components/NewChannelModal', () => {
- afterEach(() => {
- global.window.mm_config = null;
- global.window.mm_license = null;
- });
-
- test('should match snapshot, modal not showing', () => {
- function emptyFunction() {} //eslint-disable-line no-empty-function
-
- global.window.mm_license = {};
- global.window.mm_license.IsLicensed = 'false';
-
- const wrapper = shallow(
- <NewChannelModal
- show={true}
- channelType={Constants.OPEN_CHANNEL}
- channelData={{name: 'testchannel', displayName: 'testchannel', header: '', purpose: ''}}
- onSubmitChannel={emptyFunction}
- onModalDismissed={emptyFunction}
- onTypeSwitched={emptyFunction}
- onChangeURLPressed={emptyFunction}
- onDataChanged={emptyFunction}
- />
- );
- expect(wrapper).toMatchSnapshot();
- });
-
- test('should match snapshot, modal showing', () => {
- function emptyFunction() {} //eslint-disable-line no-empty-function
-
- global.window.mm_license = {};
- global.window.mm_license.IsLicensed = 'false';
-
- const wrapper = shallow(
- <NewChannelModal
- show={true}
- channelType={Constants.OPEN_CHANNEL}
- channelData={{name: 'testchannel', displayName: 'testchannel', header: '', purpose: ''}}
- onSubmitChannel={emptyFunction}
- onModalDismissed={emptyFunction}
- onTypeSwitched={emptyFunction}
- onChangeURLPressed={emptyFunction}
- onDataChanged={emptyFunction}
- />
- );
- expect(wrapper).toMatchSnapshot();
- });
-
- test('should match snapshot, private channel filled in header and purpose', () => {
- function emptyFunction() {} //eslint-disable-line no-empty-function
-
- global.window.mm_license = {};
- global.window.mm_license.IsLicensed = 'false';
-
- const wrapper = shallow(
- <NewChannelModal
- show={true}
- channelType={Constants.PRIVATE_CHANNEL}
- channelData={{name: 'testchannel', displayName: 'testchannel', header: 'some header', purpose: 'some purpose'}}
- onSubmitChannel={emptyFunction}
- onModalDismissed={emptyFunction}
- onTypeSwitched={emptyFunction}
- onChangeURLPressed={emptyFunction}
- onDataChanged={emptyFunction}
- />
- );
- expect(wrapper).toMatchSnapshot();
- });
-});