-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
Add failing test case for autotracking of derived state #495
base: master
Are you sure you want to change the base?
Add failing test case for autotracking of derived state #495
Conversation
ea5320a
to
95867a1
Compare
tests/integration/misc-test.js
Outdated
class MyModel { | ||
isOptionOne = false; | ||
isOptionTwo = false; | ||
isOptionThree = false; |
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.
What if you add @tracked
to these properties?
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.
Sorry, missed that.
It still can be reproduced with @tracked
95867a1
to
3e26df0
Compare
@andreyfel This looks like a tough one. When you explicitly set a value ( Do you have any thoughts as to a solution here? |
You are right that just switching to One thought I have is to make ERRORS a getter vs a static property and calculate it based on CHANGES. |
I'm only guessing after #509, this is still failing? |
3e26df0
to
68eafd2
Compare
Yep, still failing |
No description provided.