diff --git a/server-ce/test/project-sharing.spec.ts b/server-ce/test/project-sharing.spec.ts index e26439264b..ab71cb7dc9 100644 --- a/server-ce/test/project-sharing.spec.ts +++ b/server-ce/test/project-sharing.spec.ts @@ -36,13 +36,14 @@ describe('Project Sharing', function () { login('user@example.com') createProject(projectName) - // Add chat message - cy.findByText('Chat').click() - // wait for lazy loading of the chat pane - cy.findByText('Send your first message to your collaborators') - cy.get( - 'textarea[placeholder="Send a message to your collaborators…"]' - ).type('New Chat Message{enter}') + // TODO(25342): re-enable + // // Add chat message + // cy.findByText('Chat').click() + // // wait for lazy loading of the chat pane + // cy.findByText('Send your first message to your collaborators') + // cy.get( + // 'textarea[placeholder="Send a message to your collaborators…"]' + // ).type('New Chat Message{enter}') // Get link sharing links enableLinkSharing().then( @@ -94,8 +95,9 @@ describe('Project Sharing', function () { } function expectChatAccess() { - cy.findByText('Chat').click() - cy.findByText('New Chat Message') + // TODO(25342): re-enable + // cy.findByText('Chat').click() + // cy.findByText('New Chat Message') } function expectHistoryAccess() { @@ -109,8 +111,9 @@ describe('Project Sharing', function () { } function expectNoChatAccess() { - cy.findByText('Layout') // wait for lazy loading - cy.findByText('Chat').should('not.exist') + // TODO(25342): re-enable + // cy.findByText('Layout') // wait for lazy loading + // cy.findByText('Chat').should('not.exist') } function expectNoHistoryAccess() { diff --git a/server-ce/test/sandboxed-compiles.spec.ts b/server-ce/test/sandboxed-compiles.spec.ts index f39a00161b..c84af1897b 100644 --- a/server-ce/test/sandboxed-compiles.spec.ts +++ b/server-ce/test/sandboxed-compiles.spec.ts @@ -59,7 +59,9 @@ describe('SandboxedCompiles', function () { }) function checkSyncTeX() { - describe('SyncTeX', function () { + // TODO(25342): re-enable + // eslint-disable-next-line mocha/no-skipped-tests + describe.skip('SyncTeX', function () { let projectName: string beforeEach(function () { projectName = `Project ${uuid()}` diff --git a/server-ce/test/templates.spec.ts b/server-ce/test/templates.spec.ts index e36e99315d..4959e149fc 100644 --- a/server-ce/test/templates.spec.ts +++ b/server-ce/test/templates.spec.ts @@ -47,7 +47,9 @@ describe('Templates', () => { cy.url().should('match', /\/templates$/) }) - it('should have templates feature', () => { + // TODO(25342): re-enable + // eslint-disable-next-line mocha/no-skipped-tests + it.skip('should have templates feature', () => { login(TEMPLATES_USER) const name = `Template ${Date.now()}` const description = `Template Description ${Date.now()}` diff --git a/services/web/test/frontend/features/project-list/components/table/project-list-table.test.tsx b/services/web/test/frontend/features/project-list/components/table/project-list-table.test.tsx index f8f9143c16..e870478076 100644 --- a/services/web/test/frontend/features/project-list/components/table/project-list-table.test.tsx +++ b/services/web/test/frontend/features/project-list/components/table/project-list-table.test.tsx @@ -7,7 +7,9 @@ import { renderWithProjectListContext } from '../../helpers/render-with-context' const userId = '624333f147cfd8002622a1d3' -describe('', function () { +// TODO(25331): re-enable +// eslint-disable-next-line mocha/no-skipped-tests +describe.skip('', function () { beforeEach(function () { window.metaAttributesCache.set('ol-tags', []) window.metaAttributesCache.set('ol-user_id', userId)