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

cnr-ibba / SMARTER-frontend / 9614108544

21 Jun 2024 01:04PM UTC coverage: 65.007% (+2.7%) from 62.352%
9614108544

Pull #28

github

web-flow
Merge e1da260fa into f1188b6b2
Pull Request #28: :passport_control: remove restricted access

100 of 192 branches covered (52.08%)

Branch coverage included in aggregate %.

11 of 15 new or added lines in 6 files covered. (73.33%)

2 existing lines in 2 files now uncovered.

396 of 571 relevant lines covered (69.35%)

4.14 hits per line

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

75.0
/src/app/navigation/header/header.component.ts
1
import { Component, EventEmitter, Output } from '@angular/core';
2

3
import { Subscription } from 'rxjs';
4

5
@Component({
6
  selector: 'app-header',
7
  templateUrl: './header.component.html',
8
  styleUrls: ['./header.component.scss']
9
})
10
export class HeaderComponent  {
1✔
11
  // listed to sidenav from outside
12
  @Output() sidenavToggle = new EventEmitter<void>();
4✔
13

14
  // mind authentication
15
  isAuthenticated = false;
4✔
16
  authSubscription!: Subscription;
17

18
  onToggleSidenav() {
UNCOV
19
    this.sidenavToggle.emit();
×
20
  }
21

22
}
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