-
Notifications
You must be signed in to change notification settings - Fork 2
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
CPLAT-15628 Add default timeout to waitForElementToBeRemoved #34
CPLAT-15628 Add default timeout to waitForElementToBeRemoved #34
Conversation
Security InsightsNo security relevant content was detected by automated scans. Action Items
Questions or Comments? Reach out on Slack: #support-infosec. |
test/unit/dom/wait_for_test.dart
Outdated
test('an element that is never removed, throws with default timeout value', () async { | ||
expect( | ||
() => rtl.waitForElementToBeRemoved(() => elementThatWontBeRemoved, container: view.container), | ||
throwsA(allOf( | ||
isA<TimeoutException>(), | ||
hasToStringValue(contains('The element returned from the callback was still present in the container after ${asyncQueryTimeout.inMilliseconds}ms:')), | ||
))); | ||
}, timeout: asyncQueryTestTimeout); |
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.
Alrighty folks, this test should do the trick. As @sydneyjodon-wk suggested, I'm testing against an element that is never removed. Fails without the default value set (Cannot read properties of null
), passes when default is set 👍
I removed my previous test—looks like the test on line 174 already handles that case.
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.
+10 Looks great!
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.
🔥 🔥 🔥
2e8c3d7
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.
+10
- CI passes - the only failures are just because of formatting on Dart 2.14.2 being different than formatting on Dart 2.13.4
Motivation
waitForElementToBeRemoved
doesn’t have a default for timeout. Though it calls waitFor (which has a default timeout), it throws its own timeout exception which uses waitFor's duration in the message.For more info, see this Slack thread.
Changes
Duration
to thetimeout
parameterRelease Notes
Review
See CONTRIBUTING.md for more details on review types (+1 / QA +1 / +10) and code review process.
QA Checklist
Merge Checklist
While we perform many automated checks before auto-merging, some manual checks are needed: