-
Notifications
You must be signed in to change notification settings - Fork 948
Add an ObjectValue builder #2671
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
Conversation
ed58e2e
to
6944854
Compare
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.
The description of the PR refers to issue 115 which seems unrelated, can you please double-check?
expect(objValue.value()).to.deep.equal(expected); | ||
expect(objValue2.value()).to.deep.equal(expected); | ||
expect(objValue3.value()).to.deep.equal(expected); | ||
expect(objValue4.value()).to.deep.equal(expected); | ||
}); | ||
|
||
it('can delete multiple fields', () => { |
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.
Optional: add a test showing it's possible to set and immediately delete fields? (e.g., set a
, b
, c
, delete b
, check that the end result only has a
, c
)
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.
Added a test.
It's #1150. I updated the description. |
Port of firebase/firebase-android-sdk#1150
Many more PRs to come. See firebase/firebase-android-sdk#1217 for reference.