()
| 11 | } from './screen.js' |
| 12 | |
| 13 | function createTestScreen() { |
| 14 | const stylePool = new StylePool() |
| 15 | const charPool = new CharPool() |
| 16 | const hyperlinkPool = new HyperlinkPool() |
| 17 | const screen = createScreen(8, 1, stylePool, charPool, hyperlinkPool) |
| 18 | return { stylePool, screen } |
| 19 | } |
| 20 | |
| 21 | describe('analyzeFillableSpaceGap', () => { |
| 22 | it('returns a partial prefix when a later gap cell is non-space content', () => { |
no test coverage detected