test(ivy): add root cause analysis for failing router tests (#27792)

PR Close #27792
This commit is contained in:
Marc Laval 2018-12-21 11:25:55 +01:00 committed by Matias Niemelä
parent 50a91ba28c
commit 5da55d6246
1 changed files with 45 additions and 45 deletions

View File

@ -4074,8 +4074,8 @@ describe('Integration', () => {
}); });
}); });
fixmeIvy('unknown').it( fixmeIvy('FW-887: JIT: compilation of NgModule')
'should use the injector of the lazily-loaded configuration', .it('should use the injector of the lazily-loaded configuration',
fakeAsync(inject( fakeAsync(inject(
[Router, Location, NgModuleFactoryLoader], [Router, Location, NgModuleFactoryLoader],
(router: Router, location: Location, loader: SpyNgModuleFactoryLoader) => { (router: Router, location: Location, loader: SpyNgModuleFactoryLoader) => {
@ -4417,8 +4417,8 @@ describe('Integration', () => {
class LazyLoadedModule { class LazyLoadedModule {
} }
fixmeIvy('unknown').it( fixmeIvy('FW-887: JIT: compilation of NgModule')
'should not ignore empty path when in legacy mode', .it('should not ignore empty path when in legacy mode',
fakeAsync(inject( fakeAsync(inject(
[Router, NgModuleFactoryLoader], [Router, NgModuleFactoryLoader],
(router: Router, loader: SpyNgModuleFactoryLoader) => { (router: Router, loader: SpyNgModuleFactoryLoader) => {
@ -4436,8 +4436,8 @@ describe('Integration', () => {
expect(link.getAttribute('href')).toEqual('/lazy/foo/bar/simple'); expect(link.getAttribute('href')).toEqual('/lazy/foo/bar/simple');
}))); })));
fixmeIvy('unknown').it( fixmeIvy('FW-887: JIT: compilation of NgModule')
'should ignore empty path when in corrected mode', .it('should ignore empty path when in corrected mode',
fakeAsync(inject( fakeAsync(inject(
[Router, NgModuleFactoryLoader], [Router, NgModuleFactoryLoader],
(router: Router, loader: SpyNgModuleFactoryLoader) => { (router: Router, loader: SpyNgModuleFactoryLoader) => {