• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

geosolutions-it / MapStore2 / 19710972030

26 Nov 2025 03:38PM UTC coverage: 76.665% (-0.3%) from 76.929%
19710972030

Pull #11119

github

web-flow
Fix maven publish (#11739)
Pull Request #11119: Layer Selection Plugin on ArcGIS, WFS & WMS layers

32272 of 50209 branches covered (64.28%)

3 of 3 new or added lines in 2 files covered. (100.0%)

3018 existing lines in 249 files now uncovered.

40157 of 52380 relevant lines covered (76.66%)

37.9 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

40.0
/web/client/reducers/help.js
1
/**
2
 * Copyright 2015, GeoSolutions Sas.
3
 * All rights reserved.
4
 *
5
 * This source code is licensed under the BSD-style license found in the
6
 * LICENSE file in the root directory of this source tree.
7
 */
8

9
import { CHANGE_HELP_STATE, CHANGE_HELP_TEXT, CHANGE_HELPWIN_VIZ } from '../actions/help';
10

11
function help(state = null, action) {
24✔
12
    switch (action.type) {
73!
13
    case CHANGE_HELP_STATE:
UNCOV
14
        return Object.assign({}, state, {
×
15
            enabled: action.enabled
16
        });
17
    case CHANGE_HELP_TEXT: {
UNCOV
18
        return Object.assign({}, state, {
×
19
            helpText: action.helpText
20
        });
21
    }
22
    case CHANGE_HELPWIN_VIZ: {
UNCOV
23
        return Object.assign({}, state, {
×
24
            helpwinViz: action.helpwinViz
25
        });
26
    }
27
    default:
28
        return state;
73✔
29
    }
30
}
31

32
export default help;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc