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

IgniteUI / igniteui-angular / 26023601418

18 May 2026 08:57AM UTC coverage: 4.854% (-85.3%) from 90.174%
26023601418

Pull #17281

github

web-flow
Merge e7ce7a18e into 5a85df190
Pull Request #17281: feat: Added virtual scroll component and sample implementation

400 of 17347 branches covered (2.31%)

Branch coverage included in aggregate %.

63 of 222 new or added lines in 4 files covered. (28.38%)

27932 existing lines in 341 files now uncovered.

2022 of 32547 relevant lines covered (6.21%)

0.72 hits per line

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

16.67
/projects/igniteui-angular/chat-extras/src/markdown-pipe.ts
1
import { inject, Pipe, type PipeTransform } from '@angular/core';
2
import { IgxChatMarkdownService } from './markdown-service';
3
import { DomSanitizer, type SafeHtml } from '@angular/platform-browser';
4

5

6
@Pipe({ name: 'fromMarkdown' })
7
export class MarkdownPipe implements PipeTransform {
3✔
UNCOV
8
    private _service = inject(IgxChatMarkdownService);
×
UNCOV
9
    private _sanitizer = inject(DomSanitizer);
×
10

11

12
    public async transform(text?: string): Promise<SafeHtml> {
UNCOV
13
        return this._sanitizer.bypassSecurityTrustHtml(
×
14
            await this._service.parse(text ?? '')
×
15
        );
16
    }
17
}
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