-
Notifications
You must be signed in to change notification settings - Fork 258
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
chore: add DS integ test for parent ID query #1694
base: main-v0
Are you sure you want to change the base?
chore: add DS integ test for parent ID query #1694
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1694 +/- ##
==========================================
+ Coverage 42.53% 42.54% +0.01%
==========================================
Files 376 375 -1
Lines 10866 10863 -3
==========================================
Hits 4622 4622
+ Misses 6244 6241 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
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.
Thanks for adding this.
1 nit-picking comment
expect(posts.contains(testPost1), isTrue); | ||
expect(posts.contains(testPost2), isTrue); | ||
expect(posts.contains(testPost3), isFalse); |
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.
nit:
expect(posts.contains(testPost1), isTrue); | |
expect(posts.contains(testPost2), isTrue); | |
expect(posts.contains(testPost3), isFalse); | |
expect(posts, containsAll([testPost1, testPost2])); | |
expect(posts, isNot(contains(testPost3))); |
@Jordan-Nelson can this be closed or should it be reviewed? |
Issue #, if available: N/A
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.