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