(html: string)
| 17 | } |
| 18 | |
| 19 | async function doc(html: string): Promise<Document> { |
| 20 | return new DOMParser().parseFromString(html, 'text/html'); |
| 21 | } |
| 22 | |
| 23 | it('fails without integrity marker comment', async () => { |
| 24 | const dom = await doc('<app-root></app-root>'); |
no outgoing calls
no test coverage detected