Skip to content

Commit

Permalink
feat: add tests WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlospaco committed Jan 22, 2025
1 parent bb12088 commit a2144c5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/_sync/test_gotrue_admin_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,3 +424,15 @@ def test_link_identity_missing_session():
}
)
assert exc.value is not None


def test_sign_in_with_id_token():
try:
client_api_auto_confirm_off_signups_enabled_client().sign_in_with_id_token(
{
"provider": "google",
"token": "123456",
}
)
except AuthApiError as e:
assert e.to_dict()

0 comments on commit a2144c5

Please sign in to comment.