(doc: Document, selector: string)
| 259 | } |
| 260 | |
| 261 | export function assertNotSelector(doc: Document, selector: string) { |
| 262 | if (doc.querySelector(selector) !== null) { |
| 263 | const html = prettyDom(doc); |
| 264 | throw new Error( |
| 265 | `Selector "${selector}" found in document.\n\n${html}`, |
| 266 | ); |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | export function assertMetaContent( |
| 271 | doc: Document, |
no test coverage detected