| 1104 | } |
| 1105 | |
| 1106 | class FakePositionStrategy implements PositionStrategy { |
| 1107 | element: HTMLElement | undefined; |
| 1108 | |
| 1109 | apply(): void { |
| 1110 | this.element?.classList.add('fake-positioned'); |
| 1111 | } |
| 1112 | |
| 1113 | attach(overlayRef: OverlayRef) { |
| 1114 | this.element = overlayRef.overlayElement; |
| 1115 | } |
| 1116 | |
| 1117 | dispose() {} |
| 1118 | } |
| 1119 | |
| 1120 | class FakeScrollStrategy implements ScrollStrategy { |
| 1121 | isEnabled = false; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…