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