Skip to content

Commit 68f5f83

Browse files
Johannes WaigelJanCizmar
authored andcommitted
fix: E2E test
1 parent 878d1ba commit 68f5f83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

e2e/cypress/integration/signUp.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,9 @@ context('Sign up', () => {
207207
createProjectWithInvitation('Crazy project').then(({ invitationLink }) => {
208208
cy.visit(invitationLink);
209209
assertMessage('Log in or sign up first please');
210-
cy.intercept('/api/public/authorize_oauth/github/*').as('GithubSignup');
210+
cy.intercept('/api/public/authorize_oauth/github**http://**').as(
211+
'GithubSignup'
212+
);
211213
loginWithFakeGithub();
212214
cy.wait('@GithubSignup').then((interception) => {
213215
assert.isTrue(interception.request.url.includes('invitationCode'));

0 commit comments

Comments
 (0)