()
| 2 | import type {StyleExpectations} from '../globals'; |
| 3 | |
| 4 | async function loadBasicPage() { |
| 5 | await loadTestPage({ |
| 6 | '/': multiline( |
| 7 | '<!DOCTYPE html>', |
| 8 | '<html>', |
| 9 | '<head>', |
| 10 | '</head>', |
| 11 | '<body>', |
| 12 | ' <span style="color: red;">Inline style override</span>', |
| 13 | '</body>', |
| 14 | '</html>', |
| 15 | ), |
| 16 | }); |
| 17 | } |
| 18 | |
| 19 | async function expectStyles(styles: StyleExpectations) { |
| 20 | await expectPageStyles(expect, styles); |
no test coverage detected
searching dependent graphs…