-
Notifications
You must be signed in to change notification settings - Fork 673
test: add ECS migration regression coverage #15327
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
Merged
Merged
Changes from 18 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
6001bbc
test: add ECS migration regression coverage
ampagent 4842171
test: make migration regression coverage behavior-focused
ampagent da6e1f7
test: cover mixed node drag selection
ampagent 94c5aad
Apply suggestions from code review
DrJKL 3e273c6
Update browser_tests/fixtures/helpers/CanvasHelper.ts
DrJKL 81170c5
test: prefer behavior-level ECS regression coverage
ampagent f3722ee
test: strengthen behavior-level regression assertions
ampagent 9dafbcc
test: expose semantic widget error state
ampagent 7e2945d
test: cover cyclic subgraph definition collection
ampagent 2a8e0d5
test: add more migration-safe behavior coverage
ampagent 37072a8
test: strengthen additional migration behavior coverage
ampagent f6ee63e
test: address behavior coverage review feedback
ampagent 951a9e6
Merge remote-tracking branch 'origin/main' into test/ecs-migration-re…
ampagent 55550fd
test: select reroute fixture through Vue node UI
ampagent bd1348f
test: assert touch pan behavior directly
ampagent d93152b
Merge remote-tracking branch 'origin/main' into test/ecs-migration-re…
ampagent 532214f
test: create valid floating link fixture
ampagent 36588fc
test: keep regression coverage behavioral
ampagent 44abed6
test: use pinned node matcher
ampagent d79ea90
test: reuse bounds matcher for node growth
ampagent 0019f39
Merge branch 'main' into test/ecs-migration-regression-coverage
DrJKL 5c49957
[automated] Update test expectations
invalid-email-address File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Why isn't this
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.
https://playwright.dev/docs/test-assertions#expectpoll
Poll needs a getter function.
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.
Addressed in 44abed6 using the existing retrying custom matcher:
await expect(node).toBePinned(). The spec now importscomfyExpectso the matcher is available.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.
Switching to the custom assertion though, good catch.