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

RoundingWell / care-ops-frontend / d35cdd0e-4627-4540-a585-fe4f753c38ef

27 Mar 2026 04:25PM UTC coverage: 22.923% (-77.0%) from 99.94%
d35cdd0e-4627-4540-a585-fe4f753c38ef

push

circleci

paulfalgout
Trigger app-tests after qa2 deploys

75 of 625 branches covered (12.0%)

Branch coverage included in aggregate %.

496 of 1866 relevant lines covered (26.58%)

15.84 hits per line

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

0.0
/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;
×
5

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