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

nilfalse / ctf / 9341389095

02 Jun 2024 09:37PM UTC coverage: 85.531% (-4.0%) from 89.534%
9341389095

push

github

yaroslav-ilin
v0.1.0 Manifest v3 (Chrome-only)

229 of 284 branches covered (80.63%)

Branch coverage included in aggregate %.

40 of 70 new or added lines in 14 files covered. (57.14%)

569 of 649 relevant lines covered (87.67%)

66.79 hits per line

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

55.56
/packages/runtime/util/debug.ts
1
export const intro =
2
  process.env.NODE_ENV === 'development'
18!
3
    ? () => {
4
        console.log(
×
5
          '%c%s',
6
          'font-size: 21px; color: cyan; text-shadow: 1px 1px 0 black, 1px -1px 0 black, -1px 1px 0 black, -1px -1px 0 black',
7
          'Running in development mode.\nClick below to open the popup page:'
8
        );
9
        console.log(
×
10
          '%c%s',
11
          'font-size: 15px',
12
          browser.runtime.getURL('popup.html')
13
        );
14
      }
15
    : () => {
16
        // ignore in test & production
17
      };
18

19
export const log: Console['log'] = console.log.bind(globalThis);
18✔
20

21
export const error: Console['error'] = console.error.bind(globalThis);
18✔
22

23
export const assert: Console['assert'] = console.assert.bind(globalThis);
18✔
24

25
export function never(message: string): never {
NEW
26
  throw new Error(message);
×
27
}
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