Demote unstable tests (#29250)
* [skip ci] Demote unstable tests * [skip ci] Further demotions, fix artifact jumbling
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
38823603a3
Коммит
d204083b12
1
.github/workflows/e2e-tests-ci-template.yml
поставляемый
1
.github/workflows/e2e-tests-ci-template.yml
поставляемый
@@ -390,6 +390,7 @@ jobs:
|
||||
- name: ci/download-artifacts
|
||||
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
||||
with:
|
||||
pattern: e2e-test-results-${{ inputs.TEST }}-*
|
||||
path: e2e-tests/${{ inputs.TEST }}/
|
||||
merge-multiple: true
|
||||
- name: ci/upload-report-global
|
||||
|
||||
@@ -46,7 +46,7 @@ describe('Bot display name', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('MM-T1813 Display name for bots stays current', () => {
|
||||
it.skip('MM-T1813 Display name for bots stays current', () => {
|
||||
cy.makeClient({user: otherSysadmin}).then((client) => {
|
||||
// # Create a bot and get bot user id
|
||||
cy.apiCreateBot().then(({bot}) => {
|
||||
|
||||
@@ -80,7 +80,7 @@ describe('Managing bot accounts', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('MM-T1853 Bots managed plugins can be created when Enable Bot Account Creation is set to false', () => {
|
||||
it.skip('MM-T1853 Bots managed plugins can be created when Enable Bot Account Creation is set to false', () => {
|
||||
// # Upload and enable "matterpoll" plugin
|
||||
cy.apiUploadAndEnablePlugin(matterpollPlugin);
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ describe('MM-T4065 Setting manual status clear time less than 7 days away', () =
|
||||
cy.get('#custom_status_modal .dateTime').should('exist');
|
||||
});
|
||||
|
||||
it('MM-T4065_6 should show selected date in the date input field', () => {
|
||||
it.skip('MM-T4065_6 should show selected date in the date input field', () => {
|
||||
// # Click on DayPicker input field
|
||||
cy.get('.dateTime__calendar-icon').click();
|
||||
|
||||
@@ -144,7 +144,7 @@ describe('MM-T4065 Setting manual status clear time less than 7 days away', () =
|
||||
should('have.attr', 'data-emoticon', customStatus.emoji);
|
||||
});
|
||||
|
||||
it('MM-T4065_9 should show the set custom status with expiry when status dropdown is opened', () => {
|
||||
it.skip('MM-T4065_9 should show the set custom status with expiry when status dropdown is opened', () => {
|
||||
// # Click on the sidebar header to open status dropdown
|
||||
cy.get('.MenuWrapper .status-wrapper').click();
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ describe('MM-T4066 Setting manual status clear time more than 7 days away', () =
|
||||
defaultDurations.map((duration, index) => cy.get(`#custom_status_modal #statusExpiryMenu li#expiry_menu_item_${index}`).should('have.text', duration));
|
||||
});
|
||||
|
||||
it('MM-T4066_5 should show date/time input on selecting Choose date and time', () => {
|
||||
it.skip('MM-T4066_5 should show date/time input on selecting Choose date and time', () => {
|
||||
// * Check that the date and time input are not present
|
||||
cy.get('#custom_status_modal .dateTime').should('not.exist');
|
||||
|
||||
@@ -98,7 +98,7 @@ describe('MM-T4066 Setting manual status clear time more than 7 days away', () =
|
||||
cy.get('#custom_status_modal .dateTime').should('exist');
|
||||
});
|
||||
|
||||
it('MM-T4066_6 should show selected date in the date input field', () => {
|
||||
it.skip('MM-T4066_6 should show selected date in the date input field', () => {
|
||||
// # Click on DayPicker input field
|
||||
cy.get('.dateTime__calendar-icon').click();
|
||||
|
||||
@@ -128,7 +128,7 @@ describe('MM-T4066 Setting manual status clear time more than 7 days away', () =
|
||||
should('have.attr', 'data-emoticon', customStatus.emoji);
|
||||
});
|
||||
|
||||
it('MM-T4066_8 should show the set custom status with expiry when status dropdown is opened', () => {
|
||||
it.skip('MM-T4066_8 should show the set custom status with expiry when status dropdown is opened', () => {
|
||||
// # Click on the sidebar header to open status dropdown
|
||||
cy.get('.MenuWrapper .status-wrapper').click();
|
||||
|
||||
@@ -143,7 +143,7 @@ describe('MM-T4066 Setting manual status clear time more than 7 days away', () =
|
||||
cy.get('.status-dropdown-menu .custom_status__expiry time').should('have.text', dateToBeSelected.format('MMM DD'));
|
||||
});
|
||||
|
||||
it('MM-52881 should show the selected date when reopening the date picker', () => {
|
||||
it.skip('MM-52881 should show the selected date when reopening the date picker', () => {
|
||||
// # clear the status
|
||||
cy.get('.input-clear-x').click();
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ describe('Verify Accessibility Support in Modals & Dialogs', () => {
|
||||
cy.visit(`/${testTeam.name}/channels/town-square`);
|
||||
});
|
||||
|
||||
it('MM-T1466 Accessibility Support in Direct Messages Dialog screen', () => {
|
||||
it.skip('MM-T1466 Accessibility Support in Direct Messages Dialog screen', () => {
|
||||
// * Verify the aria-label in create direct message button
|
||||
cy.uiAddDirectMessage().click();
|
||||
|
||||
@@ -137,7 +137,7 @@ describe('Verify Accessibility Support in Modals & Dialogs', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('MM-T1468 Accessibility Support in Add people to Channel Dialog screen', () => {
|
||||
it.skip('MM-T1468 Accessibility Support in Add people to Channel Dialog screen', () => {
|
||||
// # Add atleast 5 users
|
||||
for (let i = 0; i < 5; i++) {
|
||||
cy.apiCreateUser().then(({user}) => { // eslint-disable-line
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @enterprise @ldap
|
||||
|
||||
import {UserProfile} from '@mattermost/types/users';
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @integrations
|
||||
|
||||
/**
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @incoming_webhook
|
||||
|
||||
describe('Integrations/Incoming Webhook', () => {
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @messaging
|
||||
|
||||
import {getAdminAccount} from '../../../support/env';
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @notifications
|
||||
|
||||
import * as TIMEOUTS from '../../../fixtures/timeouts';
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @not_cloud @system_console
|
||||
|
||||
import {fileSizeToString} from '../../../utils';
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
// - [*] indicates an assertion (e.g. * Check the title)
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @playbooks
|
||||
|
||||
describe('channels rhs > start a run', {testIsolation: true}, () => {
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
// - [*] indicates an assertion (e.g. * Check the title)
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @playbooks
|
||||
|
||||
describe('channels > slash command > test', {testIsolation: true}, () => {
|
||||
|
||||
Ссылка в новой задаче
Block a user