(f: Font, expected: string)
| 82 | }); |
| 83 | |
| 84 | function toCssStringTest(f: Font, expected: string) { |
| 85 | expect(f.toCssString()).toBe(expected); |
| 86 | } |
| 87 | |
| 88 | it('css-string-tests', () => { |
| 89 | toCssStringTest(Font.withFamilyList(['Arial'], 12, FontStyle.Plain), '12px Arial'); |
no test coverage detected