Skip to content

Commit

Permalink
fix: update staging email url
Browse files Browse the repository at this point in the history
this is why the integration tests are failing! I failed to update the link when I deployed the D1 migration work, so the auth flow never actually completes. DOH.
  • Loading branch information
travis committed Aug 10, 2023
1 parent aee117a commit ac00195
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 @@ -17,7 +17,7 @@ function getAuthLinkFromEmail (email, uploadServiceUrl) {
const link = email.match(/<a href="([^"]*)".*Verify email address/)[1]

// test auth services always link to the staging URL but we want to hit the service we're testing
return link.replace("https://w3access-staging.protocol-labs.workers.dev", uploadServiceUrl)
return link.replace("https://staging.up.web3.storage", uploadServiceUrl)
}

async function createMailSlurpInbox() {
Expand Down

0 comments on commit ac00195

Please sign in to comment.