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

3
import { observer } from 'mobx-react';
×
4
import * as MonacoType from 'monaco-editor';
5

6
import { Output } from './output';
×
7
import { AppState } from '../state';
8

9
const defaultMonacoOptions: MonacoType.editor.IEditorOptions = {
×
10
  minimap: {
11
    enabled: false,
12
  },
13
  wordWrap: 'on',
14
};
15

16
interface OutputsProps {
17
  appState: AppState;
18
}
19

20
interface OutputsState {
21
  readonly monaco: typeof MonacoType;
22
  monacoOptions: MonacoType.editor.IEditorOptions;
23
}
24

25
export const Outputs = observer(
×
26
  class Outputs extends React.Component<OutputsProps, OutputsState> {
27
    constructor(props: OutputsProps) {
28
      super(props);
×
29

30
      this.state = {
×
31
        monaco: window.monaco,
32
        monacoOptions: defaultMonacoOptions,
33
      };
34
    }
35

36
    public render() {
37
      const { appState } = this.props;
×
38
      const { monaco } = this.state;
×
39

40
      return (
×
41
        <Output
42
          monaco={monaco}
43
          appState={appState}
44
          monacoOptions={defaultMonacoOptions}
45
        />
46
      );
47
    }
48
  },
49
);
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