({ wordWrap, wrapOnWordBoundary } = {})
| 114 | let tableOptions, cell; |
| 115 | |
| 116 | function initCell({ wordWrap, wrapOnWordBoundary } = {}) { |
| 117 | cell = new Cell({ content: 'some text', wordWrap, wrapOnWordBoundary }); |
| 118 | cell.x = cell.y = 0; |
| 119 | } |
| 120 | |
| 121 | beforeEach(() => { |
| 122 | utils.wordWrap.mockClear(); |
no outgoing calls
no test coverage detected
searching dependent graphs…