(pool: StylePool, rawStyleCount: number)
| 25 | } |
| 26 | |
| 27 | function fillRawStyles(pool: StylePool, rawStyleCount: number): void { |
| 28 | for (let i = 1; i < rawStyleCount; i += 1) { |
| 29 | pool.intern([style(i)]) |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | describe('StylePool packed-cell overflow', () => { |
| 34 | it('round-trips the maximum safe packed style id', () => { |
no test coverage detected