• 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/loader.ts
1
export const createTemplateLoadingError = (names: Array<string | null>): Error => {
1✔
2
    let message: string;
102✔
3
    
4
    if (names.length === 1) {
102✔
5
        const name = names[0];
96✔
6
        
7
        message = `Unable to find template "${name ? name : ''}".`;
96✔
8
    } else {
9
        message = `Unable to find one of the following templates: "${names.join('", "')}".`;
6✔
10
    }
11
    
12
    const error = Error(message);
102✔
13
    
14
    Error.captureStackTrace(error, createTemplateLoadingError);
102✔
15
    
16
    return error;
102✔
17
};
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