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

RoundingWell / care-ops-frontend / b077d963-4b6b-4ae1-81c6-5565bc6821fb

02 Oct 2025 07:29PM UTC coverage: 98.199% (-1.7%) from 99.927%
b077d963-4b6b-4ae1-81c6-5565bc6821fb

Pull #1524

circleci

nmajor25
In patient_app, clear action editing state in startRoute()

To fix bug where isEditing (adds .is-selected to list items) persists when navigating between pt dashboard & archive routes
Pull Request #1524: In `patient_app`, clear action `isEditing` state in `startRoute()`

1812 of 1869 branches covered (96.95%)

Branch coverage included in aggregate %.

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

87 existing lines in 15 files now uncovered.

6205 of 6295 relevant lines covered (98.57%)

235.34 hits per line

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

66.67
/src/js/utils/handle-errors.js
1
import { isError } from 'underscore';
2

3
export default async function handleErrors(error) {
4
  if (isError(error)) throw error;
2!
5

6
  if (error.response) {
2!
7
    const status = error.response.status;
2✔
8
    const { errors } = error.responseData;
2✔
9
    /* istanbul ignore next: can't get coverage on a throw */
10
    throw new Error(`Error Status: ${ status } - ${ JSON.stringify(errors) }`);
11
  }
UNCOV
12
  throw new Error(JSON.stringify(error));
×
13
}
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