Skip to content
Snippets Groups Projects
Commit cdd38a38 authored by Yan, Andrew N.'s avatar Yan, Andrew N.
Browse files

add tests for mask block creation

parent d973f870
No related branches found
No related tags found
No related merge requests found
......@@ -106,14 +106,23 @@ describe('Hydrograph charting module', () => {
beforeEach(() => {
store = configureStore({
tsData: {
current: [{
time: new Date(),
value: 10,
label: 'Label',
qualifiers: ['P'],
approved: false,
estimated: false
}],
current: [
{
time: new Date(),
value: 10,
label: 'Label',
qualifiers: ['P'],
approved: false,
estimated: false
}, {
time: new Date(),
value: null,
label: 'Masked Data',
qualifiers: ['P', 'FLD'],
approved: false,
estimated: false
}
],
compare: [],
medianStatistics: MOCK_MEDIAN_STAT_DATA
},
......@@ -151,6 +160,10 @@ describe('Hydrograph charting module', () => {
expect(selectAll('svg path.line').size()).toBe(1);
});
it('should render a rectangle for masked data', () => {
expect(selectAll('g.current-mask-group').size()).toBe(1);
});
it('should have a point for the median stat data with a label', () => {
expect(selectAll('svg circle#median-point').size()).toBe(1);
expect(selectAll('svg text#median-text').size()).toBe(0);
......
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