()
| 578 | } |
| 579 | |
| 580 | function mutateProperties() { |
| 581 | const copiedData = component.dataSource.data.slice(); |
| 582 | copiedData[0] = new TestData('topping_something_new'); |
| 583 | copiedData[1] = new TestData('topping_something_new_1'); |
| 584 | component.dataSource.data = copiedData; |
| 585 | fixture.changeDetectorRef.markForCheck(); |
| 586 | fixture.detectChanges(); |
| 587 | } |
| 588 | |
| 589 | it('should add/remove/move nodes with reference-based trackBy', () => { |
| 590 | createTrackByTestComponent('reference'); |
no test coverage detected
searching dependent graphs…