()
| 40 | } |
| 41 | |
| 42 | function createGridData(): RowConfig[] { |
| 43 | return Array.from({length: 3}, (_, rIndex) => ({ |
| 44 | cells: Array.from({length: 3}, (_, cIndex) => ({ |
| 45 | id: `c${rIndex}-${cIndex}`, |
| 46 | })), |
| 47 | })); |
| 48 | } |
| 49 | |
| 50 | describe('Grid directives', () => { |
| 51 | let fixture: ComponentFixture<GridTestComponent>; |
no outgoing calls
no test coverage detected
searching dependent graphs…