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

RoundingWell / care-ops-frontend / cfc7738b-52a5-42aa-90d8-57cd5901e488

01 Oct 2025 06:35PM UTC coverage: 98.13% (-1.8%) from 99.939%
cfc7738b-52a5-42aa-90d8-57cd5901e488

Pull #1523

circleci

paulfalgout
Fix call request
Pull Request #1523: Add five9 dialer service

1812 of 1869 branches covered (96.95%)

Branch coverage included in aggregate %.

15 of 20 new or added lines in 6 files covered. (75.0%)

88 existing lines in 16 files now uncovered.

6216 of 6312 relevant lines covered (98.48%)

233.55 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