Skip to content

Commit de77771

Browse files
committed
chore: format
1 parent 26001e7 commit de77771

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/e2e/cypress/integration/profiles/email/logout/success.spec.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ context('Testing logout flows', () => {
3939
it('should sign out and be able to sign in again', () => {
4040
cy.getSession()
4141
cy.getCookie('ory_kratos_session').should('not.be.null')
42-
cy.get(`${appPrefix(app)} [data-testid="logout"]:not(.disabled)`).click()
42+
cy.get(
43+
`${appPrefix(app)} [data-testid="logout"]:not(.disabled)`
44+
).click()
4345
cy.noSession()
4446
cy.url().should('include', '/login')
4547
cy.getCookie('ory_kratos_session').should('be.null')

test/e2e/cypress/support/commands.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ Cypress.Commands.add('browserReturnUrlOry', ({} = {}) => {
569569
updateConfigFile((config) => {
570570
config.selfservice.allowed_return_urls = [
571571
'https://www.ory.sh/',
572-
'https://www.example.org/',
572+
'https://www.example.org/'
573573
]
574574
return config
575575
})

0 commit comments

Comments
 (0)