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

electron / fiddle / 13755753799

10 Mar 2025 02:47AM UTC coverage: 87.472%. Remained the same
13755753799

Pull #1689

github

web-flow
Merge 2a6771c28 into 72117c806
Pull Request #1689: build(deps): bump dsanders11/project-actions from 1.5.2 to 1.7.0

983 of 1223 branches covered (80.38%)

Branch coverage included in aggregate %.

3772 of 4213 relevant lines covered (89.53%)

34.68 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