test(ivy): update root causes for @angular/core TestBed failures (#27650)

PR Close #27650
This commit is contained in:
Pawel Kozlowski 2018-12-13 14:31:53 +01:00 committed by Miško Hevery
parent 0397e08153
commit 10c7b89f14
3 changed files with 87 additions and 84 deletions

View File

@ -1472,8 +1472,10 @@ const TEST_COMPILER_PROVIDERS: Provider[] = [
expect(log).toEqual(['inner-start', 'main-tpl', 'outer-tpl']); expect(log).toEqual(['inner-start', 'main-tpl', 'outer-tpl']);
}); });
fixmeIvy('unknown').it( fixmeIvy(
'should dirty check projected views if the declaration place is dirty checked', () => { 'FW-842: View engine dirty-checks projected views when the declaration place is checked')
.it('should dirty check projected views if the declaration place is dirty checked',
() => {
ctx.detectChanges(false); ctx.detectChanges(false);
log = []; log = [];
innerComp.cdRef.detach(); innerComp.cdRef.detach();

View File

@ -371,8 +371,8 @@ describe('projection', () => {
}); });
if (getDOM().supportsNativeShadowDOM()) { if (getDOM().supportsNativeShadowDOM()) {
fixmeIvy('unknown').it( fixmeIvy('FW-841: Content projection with ShadovDom v0 doesn\'t work')
'should support native content projection and isolate styles per component', () => { .it('should support native content projection and isolate styles per component', () => {
TestBed.configureTestingModule({declarations: [SimpleNative1, SimpleNative2]}); TestBed.configureTestingModule({declarations: [SimpleNative1, SimpleNative2]});
TestBed.overrideComponent(MainComp, { TestBed.overrideComponent(MainComp, {
set: { set: {

View File

@ -428,7 +428,8 @@ function declareTestsUsingBootstrap() {
if (getDOM().supportsDOMEvents()) { if (getDOM().supportsDOMEvents()) {
// This test needs a real DOM.... // This test needs a real DOM....
fixmeIvy('unknown').it('should keep change detecting if there was an error', (done) => { fixmeIvy('FW-840: Exceptions thrown in event handlers are not reported to ErrorHandler')
.it('should keep change detecting if there was an error', (done) => {
@Component({ @Component({
selector: COMP_SELECTOR, selector: COMP_SELECTOR,
template: template: