From a43998c08918b6115bd45dc494b1d695e4b20a9b Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Tue, 20 Nov 2018 11:19:42 +0100 Subject: [PATCH] test(ivy): add JIRA references for root-casuse TestBed failrues (#27188) PR Close #27188 --- .../common/test/directives/ng_component_outlet_spec.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/common/test/directives/ng_component_outlet_spec.ts b/packages/common/test/directives/ng_component_outlet_spec.ts index dcc3193dd0..adc1f6023f 100644 --- a/packages/common/test/directives/ng_component_outlet_spec.ts +++ b/packages/common/test/directives/ng_component_outlet_spec.ts @@ -91,7 +91,7 @@ describe('insert/remove', () => { expect(fixture.nativeElement).toHaveText('bar'); })); - fixmeIvy('ComponentFactoryResolver not resolved with supplied injector') && + fixmeIvy('FW-642: ASSERTION ERROR: Slot should have been initialized to NO_CHANGE') && it('should use the injector, if one supplied', async(() => { let fixture = TestBed.createComponent(TestComponent); @@ -144,7 +144,7 @@ describe('insert/remove', () => { expect(fixture.nativeElement).toHaveText('projected foo'); })); - fixmeIvy('Runtime compiler is not loaded') && + fixmeIvy('FW-561: Runtime compiler is not loaded') && it('should resolve components from other modules, if supplied', async(() => { const compiler = TestBed.get(Compiler) as Compiler; let fixture = TestBed.createComponent(TestComponent); @@ -159,7 +159,7 @@ describe('insert/remove', () => { expect(fixture.nativeElement).toHaveText('baz'); })); - fixmeIvy('Runtime compiler is not loaded') && + fixmeIvy('FW-561: Runtime compiler is not loaded') && it('should clean up moduleRef, if supplied', async(() => { let destroyed = false; const compiler = TestBed.get(Compiler) as Compiler; @@ -176,7 +176,7 @@ describe('insert/remove', () => { expect(moduleRef.destroy).toHaveBeenCalled(); })); - fixmeIvy('Runtime compiler is not loaded') && + fixmeIvy('FW-561: Runtime compiler is not loaded') && it('should not re-create moduleRef when it didn\'t actually change', async(() => { const compiler = TestBed.get(Compiler) as Compiler; const fixture = TestBed.createComponent(TestComponent); @@ -194,7 +194,7 @@ describe('insert/remove', () => { expect(moduleRef).toBe(fixture.componentInstance.ngComponentOutlet['_moduleRef']); })); - fixmeIvy('Runtime compiler is not loaded') && + fixmeIvy('FW-561: Runtime compiler is not loaded') && it('should re-create moduleRef when changed', async(() => { const compiler = TestBed.get(Compiler) as Compiler; const fixture = TestBed.createComponent(TestComponent);