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

geo-engine / BioIS / 22148341201

18 Feb 2026 04:31PM UTC coverage: 83.11%. First build
22148341201

Pull #5

github

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

92 of 148 branches covered (62.16%)

Branch coverage included in aggregate %.

248 of 335 new or added lines in 17 files covered. (74.03%)

1394 of 1640 relevant lines covered (85.0%)

1.95 hits per line

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

84.62
/frontend/src/app/table/table.component.html
1
<div class="mat-elevation-z2">
1✔
2
  <table mat-table class="full-width-table" matSort aria-label="Elements">
3
    <!-- Id Column -->
4
    <ng-container matColumnDef="id">
1✔
5
      <th mat-header-cell *matHeaderCellDef mat-sort-header>Id</th>
1✔
NEW
6
      <td mat-cell *matCellDef="let row">{{ row.id }}</td>
×
7
    </ng-container>
8

9
    <!-- Name Column -->
10
    <ng-container matColumnDef="name">
1✔
11
      <th mat-header-cell *matHeaderCellDef mat-sort-header>Name</th>
1✔
NEW
12
      <td mat-cell *matCellDef="let row">{{ row.name }}</td>
×
13
    </ng-container>
14

15
    <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
1✔
16
    <tr mat-row *matRowDef="let row; columns: displayedColumns"></tr>
1✔
17
  </table>
1✔
18

19
  <mat-paginator
1✔
20
    #paginator
21
    [length]="dataSource.data.length"
1✔
22
    [pageIndex]="0"
23
    [pageSize]="10"
24
    [pageSizeOptions]="[5, 10, 20]"
25
    aria-label="Select page"
26
  >
27
  </mat-paginator>
28
</div>
1✔
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