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

nightlycommit / twing / 307

02 Jun 2025 09:53AM UTC coverage: 100.0%. Remained the same
307

push

gitlab-ci

Eric MORAND
Replace useless https protocol with http.

2541 of 2541 branches covered (100.0%)

Branch coverage included in aggregate %.

5851 of 5851 relevant lines covered (100.0%)

2499.09 hits per line

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

100.0
/src/main/lib/error/runtime.ts
1
import {createBaseError, TwingErrorLocation, TwingBaseError} from "./base";
2
import type {TwingSource} from "../source";
3

4
export const runtimeErrorName = 'TwingRuntimeError';
1✔
5

6
export interface TwingRuntimeError extends TwingBaseError<typeof runtimeErrorName> {
7

8
}
9

10
export const createRuntimeError = (message: string, location: TwingErrorLocation, source: TwingSource, previous?: Error): TwingRuntimeError => {
1✔
11
    const error = createBaseError(runtimeErrorName, message, location, source, previous);
217✔
12
    
13
    Error.captureStackTrace(error, createRuntimeError);
217✔
14
    
15
    return error;
217✔
16
};
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

© 2025 Coveralls, Inc