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

RoundingWell / care-ops-frontend / efcacdfa-2bd9-42e8-b0e1-d84979b5aa14

17 Sep 2025 09:10PM UTC coverage: 98.196% (+2.9%) from 95.256%
efcacdfa-2bd9-42e8-b0e1-d84979b5aa14

Pull #1516

circleci

nmajor25
Migrate animejs from v3 => v4
Pull Request #1516: Migrate animejs from `v3` => `v4`

1794 of 1849 branches covered (97.03%)

Branch coverage included in aggregate %.

9 of 9 new or added lines in 7 files covered. (100.0%)

71 existing lines in 13 files now uncovered.

6155 of 6246 relevant lines covered (98.54%)

232.79 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