feat(renderer): use a comment instead of an element when stamping out <template> elements

Closes #4805


Closes #5227
This commit is contained in:
Tobias Bosch
2015-11-10 15:53:57 -08:00
parent 406ace9b25
commit bb9cfe6f36
4 changed files with 16 additions and 5 deletions
@@ -475,6 +475,19 @@ export function main() {
});
}));
it('should use a comment while stamping out `<template>` elements.',
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
tcb.overrideView(MyComp, new ViewMetadata({template: '<template></template>'}))
.createAsync(MyComp)
.then((fixture) => {
var childNodesOfWrapper = DOM.childNodes(fixture.debugElement.nativeElement);
expect(childNodesOfWrapper.length).toBe(1);
expect(DOM.isCommentNode(childNodesOfWrapper[0])).toBe(true);
async.done();
});
}));
it('should support template directives via `template` attribute.',
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
tcb.overrideView(