(position: TooltipPosition)
| 928 | expect(classList).toContain('mat-mdc-tooltip-panel-right'); |
| 929 | |
| 930 | async function setPositionAndShow(position: TooltipPosition) { |
| 931 | tooltipDirective.hide(0); |
| 932 | fixture.detectChanges(); |
| 933 | await wait(0); |
| 934 | tooltipDirective.position = position; |
| 935 | tooltipDirective.show(0); |
| 936 | fixture.detectChanges(); |
| 937 | await wait(0); |
| 938 | fixture.detectChanges(); |
| 939 | await wait(0); |
| 940 | } |
| 941 | }); |
| 942 | |
| 943 | it('should account for RTL when setting the tooltip position class', async () => { |
no test coverage detected
searching dependent graphs…