From 8ceea0f238e9fc51d8ca0ef8029935240c0d71db Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Thu, 29 Nov 2018 16:57:12 +0100 Subject: [PATCH] test(ivy): update root causes for @angular/core TestBed failures (#27351) PR Close #27351 --- packages/core/test/linker/ng_module_integration_spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/core/test/linker/ng_module_integration_spec.ts b/packages/core/test/linker/ng_module_integration_spec.ts index d6bdaec52b..6a4fc85cf3 100644 --- a/packages/core/test/linker/ng_module_integration_spec.ts +++ b/packages/core/test/linker/ng_module_integration_spec.ts @@ -484,7 +484,7 @@ function declareTests(config?: {useJit: boolean}) { describe('import/export', () => { - fixmeIvy('Pipe with name \'somePipe\' not found!') && + fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account') && it('should support exported directives and pipes', () => { @NgModule( {declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]}) @@ -506,7 +506,7 @@ function declareTests(config?: {useJit: boolean}) { .toBe('transformed someValue'); }); - fixmeIvy('Pipe with name \'somePipe\' not found!') && + fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account') && it('should support exported directives and pipes if the module is wrapped into an `ModuleWithProviders`', () => { @NgModule( @@ -529,7 +529,7 @@ function declareTests(config?: {useJit: boolean}) { .toBe('transformed someValue'); }); - fixmeIvy('Pipe with name \'somePipe\' not found!') && + fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account') && it('should support reexported modules', () => { @NgModule( {declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]}) @@ -554,7 +554,7 @@ function declareTests(config?: {useJit: boolean}) { .toBe('transformed someValue'); }); - fixmeIvy('Pipe with name \'somePipe\' not found!') && + fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account') && it('should support exporting individual directives of an imported module', () => { @NgModule( {declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]})