test(ivy): root cause analysis for `@angular/platform-server` (#27800)

PR Close #27800
This commit is contained in:
Olivier Combe 2018-12-21 15:07:33 +01:00 committed by Ben Lesh
parent 9b91beed69
commit c34eee4e8e
1 changed files with 9 additions and 9 deletions

View File

@ -617,15 +617,15 @@ class HiddenModule {
});
}));
fixmeIvy('unknown').it(
'should handle false values on attributes', async(() => {
renderModule(FalseAttributesModule, {document: doc}).then(output => {
expect(output).toBe(
'<html><head></head><body><app ng-version="0.0.0-PLACEHOLDER">' +
'<my-child ng-reflect-attr="false">Works!</my-child></app></body></html>');
called = true;
});
}));
fixmeIvy('FW-887: JIT: compilation of NgModule')
.it('should handle false values on attributes', async(() => {
renderModule(FalseAttributesModule, {document: doc}).then(output => {
expect(output).toBe(
'<html><head></head><body><app ng-version="0.0.0-PLACEHOLDER">' +
'<my-child ng-reflect-attr="false">Works!</my-child></app></body></html>');
called = true;
});
}));
it('should handle element property "name"', async(() => {
renderModule(NameModule, {document: doc}).then(output => {