We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878d1ba commit 68f5f83Copy full SHA for 68f5f83
e2e/cypress/integration/signUp.ts
@@ -207,7 +207,9 @@ context('Sign up', () => {
207
createProjectWithInvitation('Crazy project').then(({ invitationLink }) => {
208
cy.visit(invitationLink);
209
assertMessage('Log in or sign up first please');
210
- cy.intercept('/api/public/authorize_oauth/github/*').as('GithubSignup');
+ cy.intercept('/api/public/authorize_oauth/github**http://**').as(
211
+ 'GithubSignup'
212
+ );
213
loginWithFakeGithub();
214
cy.wait('@GithubSignup').then((interception) => {
215
assert.isTrue(interception.request.url.includes('invitationCode'));
0 commit comments