(str)
| 381 | }); |
| 382 | |
| 383 | function assertStylesInclude(str) { |
| 384 | const styleTags = global.document.getElementsByTagName("style"); |
| 385 | const styles = getSheetText(styleTags[0].sheet); |
| 386 | |
| 387 | assert.include(styles, str); |
| 388 | } |
| 389 | |
| 390 | describe('fontFamily', () => { |
| 391 | it('leaves plain strings alone', () => { |
no test coverage detected