Skip to content
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

DocumentReference.parent() unexpectedly returning null #63

Closed
suztomo opened this issue Apr 5, 2020 · 0 comments · Fixed by #64
Closed

DocumentReference.parent() unexpectedly returning null #63

suztomo opened this issue Apr 5, 2020 · 0 comments · Fixed by #64
Assignees

Comments

@suztomo
Copy link
Collaborator

suztomo commented Apr 5, 2020

This test fails at 0.4.2:

  test('Document reference path', () async {
    final instance = MockFirestoreInstance();
    final documentReference = instance
        .collection('users')
        .document('aaa')
        .collection('friends')
        .document('bbb')
        .collection('friends-friends')
        .document('ccc');

    final friendsFriends = documentReference.parent(); // null
    final bbb = friendsFriends.parent();
    final friends = bbb.parent();
    final bbbSibling = friends.document('bbb-sibling');
    expect(bbbSibling.path, 'users/aaa/friends/bbb-sibling');
  });
@suztomo suztomo self-assigned this Apr 5, 2020
@suztomo suztomo changed the title DocumentReference.parent() expectedly returning null DocumentReference.parent() unexpectedly returning null Apr 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant