(element: Element, value: string)
| 3401 | } |
| 3402 | |
| 3403 | function assertAttrValues(element: Element, value: string) { |
| 3404 | expect(element.getAttribute('data-comp')).toEqual(value); |
| 3405 | expect(element.getAttribute('data-dir')).toEqual(value); |
| 3406 | } |
| 3407 | |
| 3408 | it('should be marked with `firstUpdatePass` up until the template and host bindings are evaluated', () => { |
| 3409 | @Directive({ |
no test coverage detected
searching dependent graphs…