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

electron / fiddle / 12981007886

27 Jan 2025 02:36AM UTC coverage: 87.604%. Remained the same
12981007886

Pull #1673

github

web-flow
Merge b1c268b60 into 8dc6ee922
Pull Request #1673: build(deps): bump coverallsapp/github-action from 2.3.4 to 2.3.6

982 of 1218 branches covered (80.62%)

Branch coverage included in aggregate %.

3767 of 4203 relevant lines covered (89.63%)

34.5 hits per line

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

0.0
/src/main/about-panel.ts
1
import * as path from 'node:path';
×
2

3
import { app } from 'electron';
×
4

5
import { Contributor } from 'src/interfaces';
6

7
import contributorsJSON from '../../static/contributors.json';
×
8

9
/**
10
 * Sets Fiddle's About panel options on Linux and macOS
11
 */
12
export function setupAboutPanel(): void {
×
13
  const contributors: Array<string> = [];
×
14
  contributorsJSON.forEach((userData: Contributor) => {
×
15
    if (userData.name !== null && userData.name !== undefined) {
×
16
      contributors.push(userData.name);
×
17
    }
18
  });
19

20
  const iconPath = path.resolve(__dirname, '../assets/icons/fiddle.png');
×
21

22
  app.setAboutPanelOptions({
×
23
    applicationName: 'Electron Fiddle',
24
    applicationVersion: app.getVersion(),
25
    authors: contributors,
26
    copyright: '© Electron Authors',
27
    credits: 'https://github.com/electron/fiddle/graphs/contributors',
28
    iconPath,
29
    version: process.versions.electron,
30
    website: 'https://electronjs.org/fiddle',
31
  });
32
}
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