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

RoundingWell / care-ops-frontend / 6f40e8c9-5148-4eba-8f16-07eebed3738e

17 Dec 2025 08:03PM UTC coverage: 98.208% (-1.8%) from 99.988%
6f40e8c9-5148-4eba-8f16-07eebed3738e

Pull #1572

circleci

nmajor25
Fix coverage branch miss in tooltip delay()
Pull Request #1572: Fix coverage branch miss in tooltip `delay()`

1829 of 1884 branches covered (97.08%)

Branch coverage included in aggregate %.

6227 of 6319 relevant lines covered (98.54%)

234.1 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