Skip to content

Commit

Permalink
fix: print auth link
Browse files Browse the repository at this point in the history
  • Loading branch information
travis committed Aug 10, 2023
1 parent 9e9a9d0 commit aee117a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/up-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export async function setupNewClient (uploadServiceUrl, options = {}) {
const latestEmail = await mailslurp.waitForLatestEmail(inboxId, timeoutMs)
console.log("got auth link")
const authLink = getAuthLinkFromEmail(latestEmail.body, uploadServiceUrl)
console.log("clicking auth link")
console.log("clicking auth link: ", authLink)

Check failure on line 59 in test/helpers/up-client.js

View workflow job for this annotation

GitHub Actions / Test

Do not use trailing space between `console.log` parameters
const authResult = await fetch(authLink, { method: 'POST' })
console.log("got auth result", authResult.status, authResult.statusText, await authResult.text())
console.log("waiting for authorize to return")
Expand Down

0 comments on commit aee117a

Please sign in to comment.