feat: return new id_token when using refresh token (#925)

This commit is contained in:
Alessandro (Ale) Segala
2025-09-09 02:31:50 -07:00
committed by GitHub
parent 6c696b46c8
commit 307caaa3ef
4 changed files with 40 additions and 20 deletions

View File

@@ -167,6 +167,7 @@ test('Successfully refresh tokens with valid refresh token', async ({ request })
const tokenData = await refreshResponse.json();
expect(tokenData.access_token).toBeDefined();
expect(tokenData.refresh_token).toBeDefined();
expect(tokenData.id_token).toBeDefined();
expect(tokenData.token_type).toBe('Bearer');
expect(tokenData.expires_in).toBe(3600);