summaryrefslogtreecommitdiffstats
path: root/test/generic-components/autoCompleteSearchBar
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2019-04-09 20:41:31 +0000
committerGerrit Code Review <gerrit@onap.org>2019-04-09 20:41:31 +0000
commitcae868635ebe867b85223b056a5243c128192cbe (patch)
tree13db7f35d15a5463dfe3512e849ab4275a2ba346 /test/generic-components/autoCompleteSearchBar
parent5b062c1f5005e14b6f18563ee875a06f5c1bc299 (diff)
parentb0f2f345cc2d1cc3812ad8a06fc1898daf5842d0 (diff)
Merge "Remove unused code"
Diffstat (limited to 'test/generic-components/autoCompleteSearchBar')
-rw-r--r--test/generic-components/autoCompleteSearchBar/AutoCompleteSearchBar.test.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/generic-components/autoCompleteSearchBar/AutoCompleteSearchBar.test.js b/test/generic-components/autoCompleteSearchBar/AutoCompleteSearchBar.test.js
new file mode 100644
index 0000000..7ba3d11
--- /dev/null
+++ b/test/generic-components/autoCompleteSearchBar/AutoCompleteSearchBar.test.js
@@ -0,0 +1,40 @@
+import React from 'react';
+import { shallow } from 'enzyme';
+import {Provider} from 'react-redux'
+import configureStore from 'redux-mock-store';
+
+import AutoCompleteSearchBar from 'generic-components/autoCompleteSearchBar/AutoCompleteSearchBar.jsx';
+
+describe('AutoCompleteSearchBarTests', () => {
+ const suggestions = [
+ {
+ text: 'Apple'
+ },
+ {
+ text: 'Orange'
+ },
+ {
+ text: 'Banana'
+ }
+ ];
+ const initialState = {
+ globalAutoCompleteSearchBarReducer: {
+ value: '',
+ suggestions: [],
+ cachedSuggestions: [],
+ suggestionName: ''
+ }
+ };
+ const mockStore = configureStore();
+ let store, wrapper;
+
+ beforeEach( () => {
+ store = mockStore(initialState);
+ wrapper = shallow(<Provider store={store}><AutoCompleteSearchBar /></Provider>);
+ })
+
+ it('render search bar - visible', () => {
+ expect(wrapper).toHaveLength(1); // ensure the message bar is mounted
+ expect(wrapper.find(AutoCompleteSearchBar)).toHaveLength(1); // ensure the InlineMessage is mounted
+ });
+})