• 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/renderer/components/sidebar.tsx
1
import * as React from 'react';
×
2

3
import { Mosaic } from 'react-mosaic-component';
×
4

5
import { SidebarFileTree } from './sidebar-file-tree';
×
6
import { SidebarPackageManager } from './sidebar-package-manager';
×
7
import { AppState } from '../state';
8

9
export const Sidebar = ({ appState }: { appState: AppState }) => {
×
10
  const ELEMENT_MAP = {
×
11
    fileTree: <SidebarFileTree appState={appState} />,
12
    packageManager: <SidebarPackageManager appState={appState} />,
13
  };
14
  return (
×
15
    <Mosaic<string>
16
      renderTile={(id) => ELEMENT_MAP[id as keyof typeof ELEMENT_MAP]}
×
17
      initialValue={{
18
        first: 'fileTree',
19
        second: 'packageManager',
20
        direction: 'column',
21
        splitPercentage: 50,
22
      }}
23
    />
24
  );
25
};
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