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

geo-engine / BioIS / 22622622086

03 Mar 2026 12:17PM UTC coverage: 81.386%. First build
22622622086

Pull #5

github

web-flow
Merge fade72e27 into e73044057
Pull Request #5: feat: UI

151 of 227 branches covered (66.52%)

Branch coverage included in aggregate %.

384 of 535 new or added lines in 21 files covered. (71.78%)

1528 of 1836 relevant lines covered (83.22%)

1.85 hits per line

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

58.82
/frontend/src/app/result/result.component.html
1
<div>
1✔
2
  <h1 class="mat-h1">Result {{ processId() }}</h1>
1✔
3
  <div class="grid-container">
1✔
4
    <mat-card class="dashboard-card">
5
      <mat-card-header>
6
        <mat-card-title>
7
          Inputs
1✔
8
          <!-- <button
9
              matIconButton
10
              class="more-button"
11
              [matMenuTriggerFor]="menu"
12
              aria-label="Toggle menu"
13
            >
14
              <mat-icon>more_vert</mat-icon>
15
            </button>
16
            <mat-menu #menu="matMenu" xPosition="before">
17
              <button mat-menu-item (click)="download()">Download</button>
18
            </mat-menu> -->
19
        </mat-card-title>
1✔
20
      </mat-card-header>
21
      <mat-card-content>
1✔
22
        <!-- TODO: Display the inputs of the selected process -->
23
        <em>This will display the inputs of the selected process.</em>
1✔
24
      </mat-card-content>
25
    </mat-card>
26

27
    <mat-card class="dashboard-card">
1✔
28
      <mat-card-header>
29
        <mat-card-title>
30
          Results
1✔
31
          <button
1✔
32
            matIconButton
33
            class="more-button"
34
            [matMenuTriggerFor]="menu"
1✔
35
            aria-label="Toggle menu"
36
          >
37
            <mat-icon>more_vert</mat-icon>
1✔
38
          </button>
39
          <mat-menu #menu="matMenu" xPosition="before">
1✔
40
            <button mat-menu-item (click)="download()">Download</button>
1✔
41
          </mat-menu>
42
        </mat-card-title>
43
      </mat-card-header>
44
      <mat-card-content>
1✔
45
        @if (result.value().ndvi; as ndvi) {
1!
NEW
46
          <p>NDVI:</p>
×
NEW
47
          <div class="indicator">
×
NEW
48
            <mat-progress-spinner
×
49
              mode="determinate"
NEW
50
              [value]="ndviToPercentage(ndvi)"
×
NEW
51
              [style]="spinnerColorVariable(ndvi)"
×
52
            ></mat-progress-spinner>
NEW
53
            <div class="indicator-number">{{ ndvi | number: '1.0-2' }}</div>
×
54
          </div>
55
        }
56
        @if (result.value().kNdvi; as kNdvi) {
1!
NEW
57
          <p>kNDVI:</p>
×
NEW
58
          <div class="indicator">
×
NEW
59
            <mat-progress-spinner
×
60
              mode="determinate"
NEW
61
              [value]="ndviToPercentage(kNdvi)"
×
NEW
62
              [style]="spinnerColorVariable(kNdvi)"
×
63
            ></mat-progress-spinner>
NEW
64
            <div class="indicator-number">{{ kNdvi | number: '1.0-2' }}</div>
×
65
          </div>
66
        }
67
      </mat-card-content>
1✔
68
    </mat-card>
69
  </div>
70
</div>
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