@@ -91,7 +91,7 @@ describe('insert/remove', () => {
91
91
expect ( fixture . nativeElement ) . toHaveText ( 'bar' ) ;
92
92
} ) ) ;
93
93
94
- fixmeIvy ( 'ComponentFactoryResolver not resolved with supplied injector ' ) &&
94
+ fixmeIvy ( 'FW-642: ASSERTION ERROR: Slot should have been initialized to NO_CHANGE ' ) &&
95
95
it ( 'should use the injector, if one supplied' , async ( ( ) => {
96
96
let fixture = TestBed . createComponent ( TestComponent ) ;
97
97
@@ -144,7 +144,7 @@ describe('insert/remove', () => {
144
144
expect ( fixture . nativeElement ) . toHaveText ( 'projected foo' ) ;
145
145
} ) ) ;
146
146
147
- fixmeIvy ( 'Runtime compiler is not loaded' ) &&
147
+ fixmeIvy ( 'FW-561: Runtime compiler is not loaded' ) &&
148
148
it ( 'should resolve components from other modules, if supplied' , async ( ( ) => {
149
149
const compiler = TestBed . get ( Compiler ) as Compiler ;
150
150
let fixture = TestBed . createComponent ( TestComponent ) ;
@@ -159,7 +159,7 @@ describe('insert/remove', () => {
159
159
expect ( fixture . nativeElement ) . toHaveText ( 'baz' ) ;
160
160
} ) ) ;
161
161
162
- fixmeIvy ( 'Runtime compiler is not loaded' ) &&
162
+ fixmeIvy ( 'FW-561: Runtime compiler is not loaded' ) &&
163
163
it ( 'should clean up moduleRef, if supplied' , async ( ( ) => {
164
164
let destroyed = false ;
165
165
const compiler = TestBed . get ( Compiler ) as Compiler ;
@@ -176,7 +176,7 @@ describe('insert/remove', () => {
176
176
expect ( moduleRef . destroy ) . toHaveBeenCalled ( ) ;
177
177
} ) ) ;
178
178
179
- fixmeIvy ( 'Runtime compiler is not loaded' ) &&
179
+ fixmeIvy ( 'FW-561: Runtime compiler is not loaded' ) &&
180
180
it ( 'should not re-create moduleRef when it didn\'t actually change' , async ( ( ) => {
181
181
const compiler = TestBed . get ( Compiler ) as Compiler ;
182
182
const fixture = TestBed . createComponent ( TestComponent ) ;
@@ -194,7 +194,7 @@ describe('insert/remove', () => {
194
194
expect ( moduleRef ) . toBe ( fixture . componentInstance . ngComponentOutlet [ '_moduleRef' ] ) ;
195
195
} ) ) ;
196
196
197
- fixmeIvy ( 'Runtime compiler is not loaded' ) &&
197
+ fixmeIvy ( 'FW-561: Runtime compiler is not loaded' ) &&
198
198
it ( 'should re-create moduleRef when changed' , async ( ( ) => {
199
199
const compiler = TestBed . get ( Compiler ) as Compiler ;
200
200
const fixture = TestBed . createComponent ( TestComponent ) ;
0 commit comments