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

oprajs / opra / 14062005836

25 Mar 2025 02:19PM UTC coverage: 77.74% (-0.3%) from 78.011%
14062005836

push

github

web-flow
1.12.3

Dev

2733 of 4179 branches covered (65.4%)

Branch coverage included in aggregate %.

13 of 16 new or added lines in 3 files covered. (81.25%)

171 existing lines in 26 files now uncovered.

7007 of 8350 relevant lines covered (83.92%)

172.04 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/packages/common/src/exception/http-errors/internal-server.error.ts
1
import type { ErrorIssue } from '../error-issue.js';
2
import { OpraHttpError } from '../opra-http-error.js';
39✔
3

4
/**
5
 * 500 Internal Server Error
6
 * The server has encountered a situation it does not know how to handle.
7
 */
8
export class InternalServerError extends OpraHttpError {
39✔
UNCOV
9
  status = 500;
×
10

11
  protected init(issue: Partial<ErrorIssue>) {
UNCOV
12
    super.init({
×
13
      message: 'Internal server error',
14
      code: 'INTERNAL_SERVER_ERROR',
15
      severity: 'fatal',
16
      ...issue,
17
    });
18
  }
19
}
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