value change does not change StepMarker position #715
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
This PR fixes #712
I've noticed that StepMarker internally uses the
currentValue
property. This property is set in theonValueChangeEvent
event handler, but when the user changes thevalue
, the change is not reflected bycurrentValue
.I added a
useEffect
hook, which listens to changes ofvalue
and sets ```currentValue ``.I added a test for that. I ran it before and after the changes were made. It failed without my fix.
I also added
@testing-library/react-native
, and I refactored all existing tests to userender
andscreen
from the mentioned library. The reason for that was a deprecation warning from the react-test-renderercreate
function (https://react.dev/warnings/react-test-renderer).The snapshots remained the same.
Test Plan:
I added unit tests for the bug. The test failed without my fix.
I tested it manually, using the example application too.
I also provided recordings from tests:
before changes
before_changes.mov
after changes
after_changes.mov