summaryrefslogtreecommitdiffstats
path: root/src/app/vnfSearch/VnfSearch.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/vnfSearch/VnfSearch.test.js')
-rw-r--r--src/app/vnfSearch/VnfSearch.test.js49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/app/vnfSearch/VnfSearch.test.js b/src/app/vnfSearch/VnfSearch.test.js
deleted file mode 100644
index c6c63fc..0000000
--- a/src/app/vnfSearch/VnfSearch.test.js
+++ /dev/null
@@ -1,49 +0,0 @@
-import React from 'react';
-import { shallow, mount } from 'enzyme';
-import {Provider} from 'react-redux'
-import configureStore from 'redux-mock-store';
-
-import ConnectedVnfSearch, { vnfSearch } from './VnfSearch.jsx';
-
-describe('VnfSearch - Shallow render of component', () => {
- let wrapper;
- const vnfFilters = {};
- const vnfVisualizationPanelClass = 'collapsible-panel-main-panel';
- const unifiedFilterValues = {};
-
- beforeEach( () => {
- wrapper = shallow(
- <vnfSearch
- vnfFilters={vnfFilters}
- unifiedFilterValues={unifiedFilterValues}
- vnfVisualizationPanelClass={vnfVisualizationPanelClass}
- />
- );
- })
-
- it('Render basic component', () => {
- expect(wrapper.length).toEqual(1);
- });
-})
-//
-// describe('VnfSearch - Render React Component (wrapped in <Provider>)', () => {
-// const initialState = {
-// vnfSearch: {}
-// };
-// const mockStore = configureStore();
-// let store, wrapper;
-//
-// beforeEach( () => {
-// store = mockStore(initialState);
-// wrapper = mount(<Provider store={store}><ConnectedVnfSearch /></Provider>);
-// })
-//
-// it('Render the connected component', () => {
-// expect(wrapper.find(ConnectedVnfSearch).length).toEqual(1);
-// });
-//
-// it('Validate props from store', () => {
-// expect(wrapper.find(VnfSearchNfRoleVisualization).props().enableBusyFeedback).toEqual(initialState.vnfSearch.enableBusyFeedback);
-// expect(wrapper.find(VnfSearchNfRoleVisualization).props().processedNfRoleCountChartData).toEqual(initialState.vnfSearch.processedNfRoleCountChartData);
-// });
-// })