Skip to content

Commit

Permalink
fix: Format ts
Browse files Browse the repository at this point in the history
Signed-off-by: sawadashota <[email protected]>
  • Loading branch information
sawadashota committed Nov 30, 2021
1 parent 5da1d78 commit 4977020
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ context('Account Recovery Success', () => {
recovery: react.recovery,
base: react.base,
app: 'react' as 'react',
profile: 'spa',
profile: 'spa'
},
{
recovery: express.recovery,
base: express.base,
app: 'express' as 'express',
profile: 'recovery',
profile: 'recovery'
}
].forEach(({ recovery, profile, base, app }) => {
describe(`for app ${app}`, () => {
Expand Down
3 changes: 1 addition & 2 deletions test/e2e/cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,7 @@ Cypress.Commands.add('recoverApi', ({ email, returnTo }) => {
if (returnTo) {
url += '?return_to=' + returnTo
}
cy
.request({url})
cy.request({ url })
.then(({ body }) => {
const form = body.ui
return cy.request({
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/cypress/support/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ declare global {
*
* @param opts
*/
recoverApi(opts: { email: string, returnTo?: string }): Chainable<void>
recoverApi(opts: { email: string; returnTo?: string }): Chainable<void>

/**
* Changes the config so that the login flow lifespan is very short.
Expand Down

0 comments on commit 4977020

Please sign in to comment.