We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See test_history_state in tests/test_machine.py for a failing example.
test_history_state
tests/test_machine.py
Line 175 uses singular transition property off of a StateNode which doesn't exist. Similarly, Line 66 also tries to use a singular transition property
transition
The text was updated successfully, but these errors were encountered:
I noticed that SCION SCXML uses s.transitions[0] in this case. This strikes me as odd, as my interpretation of how this worked was different 😅
s.transitions[0]
https://gitlab.com/scion-scxml/scion/-/blob/main/projects/libraries/core-base/lib/scion-core-base.js#L762
Sorry, something went wrong.
No branches or pull requests
See
test_history_state
intests/test_machine.py
for a failing example.Line 175 uses singular
transition
property off of a StateNode which doesn't exist.Similarly, Line 66 also tries to use a singular
transition
propertyThe text was updated successfully, but these errors were encountered: