-
Notifications
You must be signed in to change notification settings - Fork 521
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
serde: fix deserialize #837
Conversation
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.
Could you move the test alex added to the monorepo here into e2etests?
The e2etest? If so, I can add it, but I don't see a good reason for it. It's not testing anything new and we're not looking for its aesthetics. For example, here it wouldn't catch this bug because it was specific to TALA. |
Well it's not specific to TALA but that's the only part where we currently use the serialization code and the tests don't have an option to use external dagre yet so yea it's fine for now then. |
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.
✅
Maybe, it makes sense to keep it in TALA so we detect any changes there ASAP |
when rendering the following diagram with
TALA
, it errored when addingno collision.near: game loop.collision detected
The reason was that when deserializing the graph,
game loop.Children
had the full pathgame loop.collision detection
instead of justcollision detection
. Then, TALA failed to find thenear
object and resulted in apanic
.