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

RoundingWell / care-ops-frontend / c50a44d2-3a2e-4e03-ab93-65214b0639f9

01 May 2026 04:11PM UTC coverage: 98.061% (-1.9%) from 100.0%
c50a44d2-3a2e-4e03-ab93-65214b0639f9

push

circleci

web-flow
Merge pull request #1683 from RoundingWell/linear-release

ci(linear): wire Linear release pipeline to CI

1782 of 1840 branches covered (96.85%)

Branch coverage included in aggregate %.

5955 of 6050 relevant lines covered (98.43%)

237.29 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
  }
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