-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove ViewChild from metadata #8771
base: master
Are you sure you want to change the base?
Conversation
ViewChild will always be null, and so there is no point in mocking it. viewChild.required throws an error in mocked components without this change. Fixes help-me-momGH-8634
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #8771 +/- ##
===========================================
- Coverage 100.00% 99.93% -0.07%
===========================================
Files 227 227
Lines 4935 4938 +3
Branches 1147 1149 +2
===========================================
Hits 4935 4935
- Misses 0 1 +1
- Partials 0 2 +2 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi there.
Thank you for contribution, but it's a breaking change which affects other angular versions. Should be fixed without breaking anything.
Hi @satanTime, what’s the effect for other versions? Only |
ng-mocks uses many undocumented and monkey patched things. For a proper PR, you need to provide a proper test which demonstrates the issue and its fix. Here, I see that mocks which provide own empty views now will return nulls instead of objects, so tests which relied on these empty views will fail despite no change in the code, only due to the update of ng-mocks. That's what should be avoided, so what worked before should still work afterwards. |
@satanTime signal-based queries have diff --git a/libs/ng-mocks/src/lib/common/decorate.queries.ts b/libs/ng-mocks/src/lib/common/decorate.queries.ts
index 860983934..f69eb1423 100644
--- a/libs/ng-mocks/src/lib/common/decorate.queries.ts
+++ b/libs/ng-mocks/src/lib/common/decorate.queries.ts
@@ -26,8 +26,11 @@ const generateFinalQueries = (queries: {
const scanKeys: string[] = [];
for (const key of Object.keys(queries)) {
- const query: Query & { ngMetadataName?: string } = queries[key];
- final.push([key, query]);
+ const query: Query & { ngMetadataName?: string; isSignal?: boolean } = queries[key];
+ const isSignalBasedQuery = query.isViewQuery && query.isSignal;
+ if (!isSignalBasedQuery) {
+ final.push([key, query]);
+ }
if (!query.isViewQuery && !isInternalKey(key)) {
scanKeys.push(key); That way it should not be considered as a regression for any existing cases while still allowing us to move forward |
@dmitry-stepanenko that sounds promising! I’ve given you write access to this repo, so you’re welcome to edit the PR directly |
awesome, thanks @c-harding. I'll update the branch shortly |
This reverts commit 4421a1c.
6f6b616
to
429ad31
Compare
@dmitry-stepanenko Thanks for fixing this! It looks like the coverage is still a little low (I can’t tell why, you have written a test that should cover this). |
429ad31
to
f0f46f3
Compare
ViewChild will always be null, and so there is no point in mocking it.
viewChild.required throws an error in mocked components without this
change.
Fixes GH-8634