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

RoundingWell / care-ops-frontend / 9cccf874-3400-4fd5-a641-8b7a01610312

21 May 2026 05:18PM UTC coverage: 90.693% (-9.3%) from 99.963%
9cccf874-3400-4fd5-a641-8b7a01610312

Pull #1697

circleci

paulfalgout
fix(dashboard): handle actions without direct program
Pull Request #1697: fix(flows): surface missing program relationship

1664 of 1899 branches covered (87.63%)

Branch coverage included in aggregate %.

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

512 existing lines in 45 files now uncovered.

5615 of 6127 relevant lines covered (91.64%)

196.49 hits per line

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

41.67
/src/js/apps/programs/programs-all_app.js
1
import Radio from 'backbone.radio';
2

3
import App from 'js/base/app';
4

5
import ProgramSidebarApp from 'js/apps/programs/sidebar/program-sidebar_app';
6

7
import { ListView, LayoutView } from 'js/views/programs/programs-all_views';
8

9
export default App.extend({
10
  childApps: {
11
    programSidebar: ProgramSidebarApp,
12
  },
13
  viewTriggers: {
14
    'click:add': 'click:add',
15
  },
16
  onBeforeStart() {
17
    this.showView(new LayoutView());
9✔
18
    this.getRegion('list').startPreloader();
9✔
19
  },
20
  beforeStart() {
21
    return Radio.request('entities', 'fetch:programs:collection');
9✔
22
  },
23
  onStart(options, collection) {
24
    this.programs = collection;
8✔
25
    this.showChildView('list', new ListView({ collection }));
8✔
26
  },
27
  onClickAdd() {
UNCOV
28
    const programSidebar = this.getChildApp('programSidebar');
×
UNCOV
29
    const program = Radio.request('entities', 'programs:model', {});
×
UNCOV
30
    const sidebar = Radio.request('sidebar', 'start', programSidebar, { program });
×
31

UNCOV
32
    this.listenTo(sidebar, 'stop', () => {
×
UNCOV
33
      if (!program.isNew()) this.programs.add(program);
×
34
    });
35
  },
36
});
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