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

RoundingWell / care-ops-frontend / b9ceed3a-e07b-4e46-ab7d-3e2ed70cd303

24 Feb 2026 04:29PM UTC coverage: 98.184% (-1.8%) from 99.976%
b9ceed3a-e07b-4e46-ab7d-3e2ed70cd303

Pull #1607

circleci

nmajor25
Implement subscriptionVersion on web socket messages
Pull Request #1607: Implement `subscriptionVersion` on web socket messages

1859 of 1916 branches covered (97.03%)

Branch coverage included in aggregate %.

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

93 existing lines in 18 files now uncovered.

6252 of 6345 relevant lines covered (98.53%)

234.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
  }
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