Test Firestore Permissions

Current Firestore Rules to Test:

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if request.auth != null;
    }
  }
}

This rule allows any authenticated user to read/write any document.