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

pfbrowning / ng-radio / 20288167983

17 Dec 2025 01:11AM UTC coverage: 60.119% (+0.03%) from 60.092%
20288167983

Pull #71

github

web-flow
Merge 8996c123e into 0a9c45f17
Pull Request #71: Upgrade Angular From 18 To 19

82 of 216 branches covered (37.96%)

Branch coverage included in aggregate %.

4 of 4 new or added lines in 2 files covered. (100.0%)

52 existing lines in 12 files now uncovered.

830 of 1301 relevant lines covered (63.8%)

3.52 hits per line

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

88.89
/src/app/modules/shared/root-components/components/toaster-container/toaster-container.component.ts
1
import {
2
  Component,
3
  OnInit,
4
  ChangeDetectionStrategy,
5
  ChangeDetectorRef,
6
  OnDestroy,
7
  AfterViewInit,
8
} from '@angular/core';
9
import { MessageService } from 'primeng/api';
10
import { SubSink } from 'subsink';
11
import { ToasterReadyService } from '@core/services';
12

13
@Component({
14
  selector: 'blr-toaster-container',
15
  templateUrl: './toaster-container.component.html',
16
  styleUrls: ['./toaster-container.component.scss'],
17
  changeDetection: ChangeDetectionStrategy.OnPush,
18
})
19
export class ToasterContainerComponent implements OnInit, OnDestroy, AfterViewInit {
1✔
20
  constructor(
21
    private messageService: MessageService,
1✔
22
    private changeDetectorRef: ChangeDetectorRef,
1✔
23
    private toasterReadyService: ToasterReadyService
1✔
24
  ) {}
25

26
  private subs = new SubSink();
1✔
27

28
  public ngOnInit(): void {
29
    this.subs.sink = this.messageService.messageObserver.subscribe(() => {
1✔
UNCOV
30
      this.changeDetectorRef.markForCheck();
×
31
    });
32
  }
33

34
  public ngOnDestroy(): void {
35
    this.subs.unsubscribe();
1✔
36
  }
37

38
  public ngAfterViewInit(): void {
39
    this.toasterReadyService.toasterInitialized();
1✔
40
  }
41
}
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