You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There a problem when trying to use ng-mocks in test which would like to use tools for new @defer block testing,
the problem is: fixture.getDeferBlocks();
will return no defer blocks if we have any ng-mocks mock inside the test.
The inputs and other meta configuration will be the same.
Injected services into child component will be resolved by TestBed.
Not perfect because MockComponent(TestDeferChildComponent) would be nicer and shorter, but for now, it works.
However it won't hide dependencies of the child.
Hi! Any news on this? I have exactly the same issue and I can't use the workaround as I need to prevent the child component to pull all its dependencies.
Description of the bug
There a problem when trying to use ng-mocks in test which would like to use tools for new @defer block testing,
the problem is:
fixture.getDeferBlocks();
will return no defer blocks if we have any ng-mocks mock inside the test.
An example of the bug
Here is minimalistic example to reproduce
angular-jest-defer-ng-mock.zip
check
test-defer.component.spec.ts
in the example projectif we comment out
.overrideComponent(...)
from component ts file and<test-child-defer />
line from template, the test will pass.Expected vs actual behavior
Mocking components with ng-mock has no effect on fixture.getDeferBlocks() functioning, it will return defer block correctly.
The text was updated successfully, but these errors were encountered: