Skip to content

Commit a43998c

Browse files
pkozlowski-opensourcemhevery
authored andcommitted
test(ivy): add JIRA references for root-casuse TestBed failrues (angular#27188)
PR Close angular#27188
1 parent 20729b3 commit a43998c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/common/test/directives/ng_component_outlet_spec.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ describe('insert/remove', () => {
9191
expect(fixture.nativeElement).toHaveText('bar');
9292
}));
9393

94-
fixmeIvy('ComponentFactoryResolver not resolved with supplied injector') &&
94+
fixmeIvy('FW-642: ASSERTION ERROR: Slot should have been initialized to NO_CHANGE') &&
9595
it('should use the injector, if one supplied', async(() => {
9696
let fixture = TestBed.createComponent(TestComponent);
9797

@@ -144,7 +144,7 @@ describe('insert/remove', () => {
144144
expect(fixture.nativeElement).toHaveText('projected foo');
145145
}));
146146

147-
fixmeIvy('Runtime compiler is not loaded') &&
147+
fixmeIvy('FW-561: Runtime compiler is not loaded') &&
148148
it('should resolve components from other modules, if supplied', async(() => {
149149
const compiler = TestBed.get(Compiler) as Compiler;
150150
let fixture = TestBed.createComponent(TestComponent);
@@ -159,7 +159,7 @@ describe('insert/remove', () => {
159159
expect(fixture.nativeElement).toHaveText('baz');
160160
}));
161161

162-
fixmeIvy('Runtime compiler is not loaded') &&
162+
fixmeIvy('FW-561: Runtime compiler is not loaded') &&
163163
it('should clean up moduleRef, if supplied', async(() => {
164164
let destroyed = false;
165165
const compiler = TestBed.get(Compiler) as Compiler;
@@ -176,7 +176,7 @@ describe('insert/remove', () => {
176176
expect(moduleRef.destroy).toHaveBeenCalled();
177177
}));
178178

179-
fixmeIvy('Runtime compiler is not loaded') &&
179+
fixmeIvy('FW-561: Runtime compiler is not loaded') &&
180180
it('should not re-create moduleRef when it didn\'t actually change', async(() => {
181181
const compiler = TestBed.get(Compiler) as Compiler;
182182
const fixture = TestBed.createComponent(TestComponent);
@@ -194,7 +194,7 @@ describe('insert/remove', () => {
194194
expect(moduleRef).toBe(fixture.componentInstance.ngComponentOutlet['_moduleRef']);
195195
}));
196196

197-
fixmeIvy('Runtime compiler is not loaded') &&
197+
fixmeIvy('FW-561: Runtime compiler is not loaded') &&
198198
it('should re-create moduleRef when changed', async(() => {
199199
const compiler = TestBed.get(Compiler) as Compiler;
200200
const fixture = TestBed.createComponent(TestComponent);

0 commit comments

Comments
 (0)