(expected?: Partial<MyShape>)
| 29 | } |
| 30 | const ShapeOfMyShape: ShapeOf<MyShape> = {propA: true, propB: true}; |
| 31 | function matchMyShape(expected?: Partial<MyShape>): jasmine.AsymmetricMatcher<MyShape> { |
| 32 | return matchObjectShape('MyShape', isMyShape, expected); |
| 33 | } |
| 34 | |
| 35 | it('should match', () => { |
| 36 | expect(isMyShape(myShape)).toBeTrue(); |
no test coverage detected
searching dependent graphs…