| 129 | describe('annotations', () => { |
| 130 | it('should add hydration annotations to component host nodes during ssr', async () => { |
| 131 | @Component({ |
| 132 | selector: 'nested', |
| 133 | template: 'This is a nested component.', |
| 134 | }) |
| 135 | class NestedComponent {} |
| 136 | |
| 137 | @Component({ |
| 138 | selector: 'app', |