(defaultDoc: any, unsafeHtmlInput: string)
| 11 | import {isBrowser} from '@angular/private/testing'; |
| 12 | |
| 13 | function sanitizeHtml(defaultDoc: any, unsafeHtmlInput: string): string { |
| 14 | return _sanitizeHtml(defaultDoc, unsafeHtmlInput).toString(); |
| 15 | } |
| 16 | |
| 17 | describe('HTML sanitizer', () => { |
| 18 | let defaultDoc: any; |
no test coverage detected