feat(Compiler): case sensitive html parser

This commit is contained in:
Tobias Bosch
2015-10-07 09:34:21 -07:00
committed by Victor Berchet
parent e274ff8a69
commit 86aeb8be0a
14 changed files with 1674 additions and 670 deletions

View File

@ -380,7 +380,7 @@ export function main() {
run(rootComp, [dir], 1)
.then((data) => {
expect(data[0][2])
.toEqual(['someEmptyVar', '$implicit', 'someVar', 'someValue']);
.toEqual(['someVar', 'someValue', 'someEmptyVar', '$implicit']);
async.done();
});
}));