(element: HTMLElement, prop: string, value: any)
| 4001 | }); |
| 4002 | |
| 4003 | function assertStyle(element: HTMLElement, prop: string, value: any) { |
| 4004 | expect((element.style as any)[prop]).toEqual(value); |
| 4005 | } |
| 4006 | |
| 4007 | function expectStyle(element: HTMLElement) { |
| 4008 | return expect(getElementStyles(element)); |