diff --git a/e2e/cypress/e2e/client-admin/conversation.cy.js b/e2e/cypress/e2e/client-admin/conversation.cy.js index f5a8f8230..cd6502560 100644 --- a/e2e/cypress/e2e/client-admin/conversation.cy.js +++ b/e2e/cypress/e2e/client-admin/conversation.cy.js @@ -23,14 +23,10 @@ describe('Conversation: Configure', function () { cy.get('input[data-test-id="write_type"]').should('be.checked') cy.get('input[data-test-id="help_type"]').should('be.checked') cy.get('input[data-test-id="subscribe_type"]').should('be.checked') - cy.get('input[data-test-id="auth_opt_fb"]').should('be.checked') - cy.get('input[data-test-id="auth_opt_tw"]').should('be.checked') // Schemes section cy.get('input[data-test-id="is_active"]').should('be.checked') cy.get('input[data-test-id="strict_moderation"]').should('not.be.checked') - cy.get('input[data-test-id="auth_needed_to_write"]').should('be.checked') - cy.get('input[data-test-id="auth_needed_to_vote"]').should('not.be.checked') }) it('should create a new conversation with a topic and description', function () { diff --git a/e2e/cypress/e2e/client-admin/share.cy.js b/e2e/cypress/e2e/client-admin/share.cy.js index 122c91f23..b0f5610d9 100644 --- a/e2e/cypress/e2e/client-admin/share.cy.js +++ b/e2e/cypress/e2e/client-admin/share.cy.js @@ -8,7 +8,6 @@ describe('Share page', function () { .then(() => cy.visit(this.adminPath)) cy.get('input[data-test-id="strict_moderation"]').check() - cy.get('input[data-test-id="auth_needed_to_write"]').uncheck() }) beforeEach(function () { diff --git a/e2e/cypress/e2e/client-participation/social-login.cy.js b/e2e/cypress/e2e/client-participation/social-login.cy.js index f61467774..f559bb54b 100644 --- a/e2e/cypress/e2e/client-participation/social-login.cy.js +++ b/e2e/cypress/e2e/client-participation/social-login.cy.js @@ -6,8 +6,9 @@ const facebookVoteBtn = 'button#facebookButtonVoteView' const twitterAuthOpt = 'input[data-test-id="auth_opt_tw"]' const twitterCommentBtn = 'button#twitterButtonCommentForm' const twitterVoteBtn = 'button#twitterButtonVoteView' - -describe('Social login buttons', function () { +// skip this test for now +// eslint-disable-next-line mocha/no-skipped-tests +describe.skip('Social login buttons', function () { before(function () { cy.createConvo().then(() => { cy.seedComment(this.convoId)