Skip to content
Snippets Groups Projects
Commit a3d1c669 authored by Bucknell, Mary S.'s avatar Bucknell, Mary S.
Browse files

More test tweaking

parent 6564b0a1
No related branches found
No related tags found
No related merge requests found
......@@ -91,12 +91,13 @@ const drawDataTable = function(elem, {dataKind, currentData}) {
*/
export const drawDataTables = function(elem, store) {
elem.append('div')
.attr('id', 'hydrograph-data-tables')
.attr('id', 'iv-hydrograph-data-table-container')
.call(link(store, drawDataTable, createStructuredSelector({
dataKind: () => 'iv',
currentData: getCurrentPointData
})));
elem.append('div')
.attr('id', 'gw-hydrograph-data-table-container')
.call(link(store, drawDataTable, createStructuredSelector({
dataKind: () => 'gw',
currentData: getVisibleGroundwaterLevelsTableData
......
......@@ -651,8 +651,9 @@ describe('monitoring-location/components/hydrograph module', () => {
});
it('should have data tables for hydrograph data', () => {
expect(select('#hydrograph-data-tables').size()).toBe(1);
})
expect(select('#iv-hydrograph-data-table-container').size()).toBe(1);
expect(select('#gw-hydrograph-data-table-container').size()).toBe(1);
});
});
describe('hide elements when showOnlyGraph is set to true', () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment