diff options
author | Adam Wudzinski <adam.wudzinski@nokia.com> | 2019-03-26 16:47:06 +0100 |
---|---|---|
committer | awudzins <adam.wudzinski@nokia.com> | 2019-03-26 16:47:06 +0100 |
commit | b0f2f345cc2d1cc3812ad8a06fc1898daf5842d0 (patch) | |
tree | e6022e92e026a02912548e313ff2a02b5c27ddec /test/globalInlineMessageBar/GlobalInlineMessageBar.test.js | |
parent | b2c7546f9027099161aeaf5791f1d0f3a52b92d2 (diff) |
Remove unused code
Remove unsed code from generic-components and change tests directory structure to reflect src structure
Change-Id: Iada2efb0f7cfb05557eb7cd709b8a0ed75976b03
Issue-ID: AAI-1618
Signed-off-by: awudzins <adam.wudzinski@nokia.com>
Diffstat (limited to 'test/globalInlineMessageBar/GlobalInlineMessageBar.test.js')
-rw-r--r-- | test/globalInlineMessageBar/GlobalInlineMessageBar.test.js | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/test/globalInlineMessageBar/GlobalInlineMessageBar.test.js b/test/globalInlineMessageBar/GlobalInlineMessageBar.test.js deleted file mode 100644 index 9dc2a28..0000000 --- a/test/globalInlineMessageBar/GlobalInlineMessageBar.test.js +++ /dev/null @@ -1,37 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import {Provider} from 'react-redux' -import configureStore from 'redux-mock-store'; - -import GlobalInlineMessageBar from 'app/globalInlineMessageBar/GlobalInlineMessageBar.jsx' -import { - MESSAGE_LEVEL_WARNING -} from 'utils/GlobalConstants.js' -import InlineMessage from 'generic-components/InlineMessage/InlineMessage.jsx'; - -describe('GlobalInlineMessageBarTests', () => { - const errMsg = 'some random message'; - const initialState = { - globalInlineMessageBar: { - feedbackMsgText: errMsg, - feedbackMsgSeverity: MESSAGE_LEVEL_WARNING - } - }; - const mockStore = configureStore(); - let store, wrapper; - - beforeEach( () => { - store = mockStore(initialState); - wrapper = mount(<Provider store={store}><GlobalInlineMessageBar /></Provider>); - }) - - it('render message bar - visible', () => { - expect(wrapper).toHaveLength(1); // ensure the message bar is mounted - expect(wrapper.find(InlineMessage)).toHaveLength(1); // ensure the InlineMessage is mounted - }); - - it('props assigned properly', () => { - expect(wrapper.find(InlineMessage).props().level).toEqual(MESSAGE_LEVEL_WARNING); // check that the props match - expect(wrapper.find(InlineMessage).props().messageTxt).toEqual(errMsg); // check that the props match - }) -}) |