(str: string)
| 494 | |
| 495 | describe('ngNonBindable handling', () => { |
| 496 | function stripNgNonBindable(str: string) { |
| 497 | return str.replace(/ ngnonbindable=""/i, ''); |
| 498 | } |
| 499 | |
| 500 | it('should keep local ref for host element', () => { |
| 501 | @Component({ |
no test coverage detected
searching dependent graphs…