test(ivy): updating root causes for tests within @angular/core (#28003)
The problem that `fixmeIvy`s refer to is resolved, but the tests are still broken due to other issue (not possible to retrieve host property bindings for DebugElement). PR Close #28003
This commit is contained in:
parent
cea3b8f885
commit
72fc0a747d
|
@ -486,7 +486,7 @@ function declareTests(config?: {useJit: boolean}) {
|
||||||
|
|
||||||
describe('import/export', () => {
|
describe('import/export', () => {
|
||||||
|
|
||||||
fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account')
|
fixmeIvy('FW-681: not possible to retrieve host property bindings from TView')
|
||||||
.it('should support exported directives and pipes', () => {
|
.it('should support exported directives and pipes', () => {
|
||||||
@NgModule(
|
@NgModule(
|
||||||
{declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]})
|
{declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]})
|
||||||
|
@ -508,7 +508,7 @@ function declareTests(config?: {useJit: boolean}) {
|
||||||
.toBe('transformed someValue');
|
.toBe('transformed someValue');
|
||||||
});
|
});
|
||||||
|
|
||||||
fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account')
|
fixmeIvy('FW-681: not possible to retrieve host property bindings from TView')
|
||||||
.it('should support exported directives and pipes if the module is wrapped into an `ModuleWithProviders`',
|
.it('should support exported directives and pipes if the module is wrapped into an `ModuleWithProviders`',
|
||||||
() => {
|
() => {
|
||||||
@NgModule(
|
@NgModule(
|
||||||
|
@ -531,7 +531,7 @@ function declareTests(config?: {useJit: boolean}) {
|
||||||
.toBe('transformed someValue');
|
.toBe('transformed someValue');
|
||||||
});
|
});
|
||||||
|
|
||||||
fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account')
|
fixmeIvy('FW-681: not possible to retrieve host property bindings from TView')
|
||||||
.it('should support reexported modules', () => {
|
.it('should support reexported modules', () => {
|
||||||
@NgModule(
|
@NgModule(
|
||||||
{declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]})
|
{declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]})
|
||||||
|
@ -556,7 +556,7 @@ function declareTests(config?: {useJit: boolean}) {
|
||||||
.toBe('transformed someValue');
|
.toBe('transformed someValue');
|
||||||
});
|
});
|
||||||
|
|
||||||
fixmeIvy('FW-756: Pipes and directives from imported modules are not taken into account')
|
fixmeIvy('FW-681: not possible to retrieve host property bindings from TView')
|
||||||
.it('should support exporting individual directives of an imported module', () => {
|
.it('should support exporting individual directives of an imported module', () => {
|
||||||
@NgModule(
|
@NgModule(
|
||||||
{declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]})
|
{declarations: [SomeDirective, SomePipe], exports: [SomeDirective, SomePipe]})
|
||||||
|
|
Loading…
Reference in New Issue