| 13 | it('should handle all flavors of interpolated text', () => { |
| 14 | // prettier-ignore |
| 15 | @Component({ |
| 16 | template: ` |
| 17 | <div>a{{one}}b{{two}}c{{three}}d{{four}}e{{five}}f{{six}}g{{seven}}h{{eight}}i{{nine}}j</div> |
| 18 | <div>a{{one}}b{{two}}c{{three}}d{{four}}e{{five}}f{{six}}g{{seven}}h{{eight}}i</div> |
| 19 | <div>a{{one}}b{{two}}c{{three}}d{{four}}e{{five}}f{{six}}g{{seven}}h</div> |
| 20 | <div>a{{one}}b{{two}}c{{three}}d{{four}}e{{five}}f{{six}}g</div> |
| 21 | <div>a{{one}}b{{two}}c{{three}}d{{four}}e{{five}}f</div> |
| 22 | <div>a{{one}}b{{two}}c{{three}}d{{four}}e</div> |
| 23 | <div>a{{one}}b{{two}}c{{three}}d</div> |
| 24 | <div>a{{one}}b{{two}}c</div> |
| 25 | <div>a{{one}}b</div> |
| 26 | <div>{{one}}</div> |
| 27 | `, |
| 28 | standalone: false, |
| 29 | }) |
| 30 | class App { |
| 31 | one = 1; |
| 32 | two = 2; |
| 33 | three = 3; |
| 34 | four = 4; |
| 35 | five = 5; |
| 36 | six = 6; |
| 37 | seven = 7; |
| 38 | eight = 8; |
| 39 | nine = 9; |
| 40 | } |
| 41 | |
| 42 | TestBed.configureTestingModule({declarations: [App]}); |
| 43 | const fixture = TestBed.createComponent(App); |
nothing calls this directly
no test coverage detected