refactor(NgIf): replace createElement() by el()

This commit is contained in:
Victor Berchet 2015-01-23 09:27:36 +01:00
parent 3b34ef43b1
commit be6ce02021
1 changed files with 4 additions and 8 deletions

View File

@ -1,4 +1,4 @@
import {describe, xit, it, expect, beforeEach, ddescribe, iit, IS_DARTIUM} from 'test_lib/test_lib';
import {describe, xit, it, expect, beforeEach, ddescribe, iit, IS_DARTIUM, el} from 'test_lib/test_lib';
import {DOM} from 'facade/dom';
@ -20,10 +20,6 @@ export function main() {
compiler = new Compiler(null, new DirectiveMetadataReader(), new Parser(new Lexer()), new CompilerCache());
});
function createElement(html) {
return DOM.createTemplate(html).content.firstChild;
}
function createView(pv) {
component = new TestComponent();
view = pv.instantiate(null);
@ -32,7 +28,7 @@ export function main() {
}
function compileWithTemplate(template) {
return compiler.compile(TestComponent, createElement(template));
return compiler.compile(TestComponent, el(template));
}
it('should work in a template attribute', (done) => {