()
| 2 | import {CELLS, SECTION_SIZE} from './TestData'; |
| 3 | |
| 4 | function initSectionManager() { |
| 5 | const sectionManager = new SectionManager(SECTION_SIZE); |
| 6 | CELLS.forEach((cellMetadatum, index) => { |
| 7 | sectionManager.registerCell({ |
| 8 | cellMetadatum, |
| 9 | index, |
| 10 | }); |
| 11 | }); |
| 12 | return sectionManager; |
| 13 | } |
| 14 | |
| 15 | function verifySections( |
| 16 | sectionManager, |
no test coverage detected
searching dependent graphs…