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

RoundingWell / care-ops-frontend / 16c2126e-1505-4691-b685-13af16f3ba05

21 May 2026 03:05PM UTC coverage: 84.983% (-15.0%) from 99.95%
16c2126e-1505-4691-b685-13af16f3ba05

Pull #1697

circleci

paulfalgout
fix(flows): surface missing program relationship
Pull Request #1697: fix(flows): surface missing program relationship

1505 of 1885 branches covered (79.84%)

Branch coverage included in aggregate %.

3 of 9 new or added lines in 1 file covered. (33.33%)

814 existing lines in 78 files now uncovered.

5286 of 6106 relevant lines covered (86.57%)

186.68 hits per line

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

53.33
/src/js/components/dateselect/dateselect_views.js
1
import { View } from 'marionette';
2
import { isNull } from 'underscore';
3
import dayjs from 'dayjs';
4

5
import DateSelectTemplate from './date-select.hbs';
6

7
const LayoutView = View.extend({
149✔
8
  template: DateSelectTemplate,
9
  regions: {
10
    selectRegion: {
11
      el: '[data-select-region]',
12
      replaceElement: true,
13
    },
14
  },
15
  ui: {
16
    cancel: '.js-cancel',
17
  },
18
  triggers: {
19
    'click @ui.cancel': 'click:cancel',
20
  },
21
  formatDate() {
22
    const state = this.getOption('state');
2✔
23

24
    if (state.selectedDate) {
2!
25
      const date = dayjs(state.selectedDate);
2✔
26
      return date.format('MMM DD, YYYY');
2✔
27
    }
28

UNCOV
29
    if (!isNull(state.month)) {
×
UNCOV
30
      const date = dayjs().month(state.month).year(state.year);
×
UNCOV
31
      return date.format('MMM YYYY');
×
32
    }
33

UNCOV
34
    return state.year;
×
35
  },
36
  templateContext() {
37
    const state = this.getOption('state');
2✔
38

39
    return {
2✔
40
      date: this.formatDate(),
41
      hasError: state.hasError,
42
      isDisabled: state.isDisabled,
43
    };
44
  },
45
});
46

47
export {
48
  LayoutView,
49
};
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

© 2026 Coveralls, Inc