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

RoundingWell / care-ops-frontend / 0ae149a1-b0df-4e88-b3f2-c5bc67586dde

18 May 2026 08:23PM UTC coverage: 97.531% (-2.4%) from 99.975%
0ae149a1-b0df-4e88-b3f2-c5bc67586dde

Pull #1693

circleci

nmajor25
chore(dashboards): route embedding through care-ops-quicksight package
Pull Request #1693: Move QuickSight embedding behind a workspace package

1802 of 1880 branches covered (95.85%)

Branch coverage included in aggregate %.

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

119 existing lines in 19 files now uncovered.

5980 of 6099 relevant lines covered (98.05%)

259.93 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