You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue occurs when I'm making an authentification with firebase auth on a phone number + uid then a code verification http://localhost:9099/emulator/v1/projects/project-id/verificationCodes
everything working well but when I want to validate the sign in account with spree backend the jwt token is not complete the signature part is missing and I got a 403 on my request.
/// <reference types="cypress" />
describe('Can access Home and Sign in to see his profile', () => {
before(() => {
cy.login('TEST_UID', {
phone_number: '+33111111111',
})
})
it('can visit home and go to profile page', () => {
cy.visit('/')
cy.get('div[data-testid="profile"]').parent().click()
})
})
Whatever I try cy.login() or manually test the login with action I still got an incomplete JWT token
The text was updated successfully, but these errors were encountered:
Describe the bug
The issue occurs when I'm making an authentification with firebase auth on a phone number + uid then a code verification
http://localhost:9099/emulator/v1/projects/project-id/verificationCodes
everything working well but when I want to validate the sign in account with spree backend the jwt token is not complete the signature part is missing and I got a 403 on my request.
command.js
signant.spec
Whatever I try cy.login() or manually test the login with action I still got an incomplete JWT token
The text was updated successfully, but these errors were encountered: