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

geo-engine / BioIS / 26639808136

29 May 2026 01:17PM UTC coverage: 80.653% (+0.1%) from 80.558%
26639808136

push

github

web-flow
Merge pull request #14 from geo-engine/feat/esrs-e4-b5

feat: biodiversity sensitive areas

445 of 644 branches covered (69.1%)

Branch coverage included in aggregate %.

1365 of 1729 new or added lines in 31 files covered. (78.95%)

11 existing lines in 2 files now uncovered.

3261 of 3951 relevant lines covered (82.54%)

1.81 hits per line

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

85.71
/frontend/src/app/navigation/navigation.component.html
1
<mat-sidenav-container class="sidenav-container">
1✔
2
  <mat-sidenav
3
    #drawer
4
    fixedInViewport
5
    [attr.role]="isHandset.value()"
6
    [mode]="isHandset.value() ? 'over' : 'side'"
2!
7
    [opened]="isHandset.value() === false"
8
  >
9
    <div class="menu-container">
10
      <mat-toolbar><mat-icon class="logo" svgIcon="biois:logo-white"></mat-icon></mat-toolbar>
1✔
11
      <mat-nav-list>
1✔
12
        <div mat-subheader>Outputs</div>
1✔
13
        <a mat-list-item [routerLink]="['/app/results']">
2✔
14
          <mat-icon matListItemIcon>assessment</mat-icon>
1✔
15
          <span matListItemTitle>Results</span>
1✔
16
        </a>
17
        <div mat-subheader>Processes</div>
1✔
18
        @for (process of processes.value()?.processes; track process) {
2✔
19
          <a
1✔
20
            mat-list-item
21
            [routerLink]="['/app/create', process.id]"
1✔
22
            [matTooltip]="process.title ?? processName(process.id)"
23
          >
24
            <mat-icon matListItemIcon>add</mat-icon>
1✔
25
            <span matListItemTitle>
1✔
26
              {{ process.title ?? processName(process.id) }}
1✔
27
            </span>
1✔
28
          </a>
29
        }
30
        <div class="spacer"></div>
1✔
31
        <mat-divider></mat-divider>
32
        <a mat-list-item [routerLink]="['/app/signout']">
2✔
33
          <mat-icon matListItemIcon>logout</mat-icon>
1✔
34
          <span matListItemTitle>Logout</span>
1✔
35
        </a>
36
      </mat-nav-list>
37
    </div>
38
  </mat-sidenav>
39

40
  <mat-sidenav-content>
1✔
41
    <mat-toolbar>
42
      <mat-toolbar-row>
43
        @if (isHandset.value()) {
2!
44
          <button type="button" aria-label="Toggle sidenav" matIconButton (click)="drawer.toggle()">
×
45
            <mat-icon aria-label="Side nav toggle icon">menu</mat-icon>
×
46
          </button>
47
        }
48
        @if (!drawer.opened) {
2!
NEW
49
          <mat-icon class="logo" svgIcon="biois:logo"></mat-icon>
×
50
        }
51
        <span class="spacer"></span>
1✔
52
        <span class="title" [matTooltip]="title()">{{ title() }}</span>
2✔
53
      </mat-toolbar-row>
54
    </mat-toolbar>
55
    <!-- Add Content Here -->
56
    <router-outlet></router-outlet>
1✔
57
  </mat-sidenav-content>
1✔
58
</mat-sidenav-container>
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