(input: string)
| 763 | expectSpan('(((foo) && bar) || baz) === true'); |
| 764 | |
| 765 | function expectSpan(input: string) { |
| 766 | expect(unparseWithSpan(parseBinding(input))).toContain([jasmine.any(String), input]); |
| 767 | } |
| 768 | }); |
| 769 | |
| 770 | it('should produce correct span for typeof expression', () => { |
no test coverage detected
searching dependent graphs…