Daily E2E test fixes (#29580)
* [skip ci] Stabilize testcases, clean reporting for nighly unstables * [skip ci] Better output naming * [skip ci] Fix testcase failure fatal condition * [skip ci] Make linter happy * [skip ci] Revert global beforeEach change * [skip ci] Fix workflow file, skip unstable tests * [skip ci] Fix testcase_failure_fatal templating
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
8b8d0a0a09
Коммит
70b14c37c7
@@ -352,7 +352,7 @@ describe('Integrations page', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('MM-T652 Regenerate Secret', () => {
|
||||
it.skip('MM-T652 Regenerate Secret', () => {
|
||||
cy.apiLogin(user1);
|
||||
cy.visit(testChannelUrl1);
|
||||
|
||||
|
||||
@@ -27,6 +27,11 @@ describe('Integrations', () => {
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
// Ensure that the user is set to 'online' before starting each testcase
|
||||
cy.apiUpdateUserStatus('online');
|
||||
});
|
||||
|
||||
it('I18456 Built-in slash commands: change user status via post', () => {
|
||||
cy.apiSaveMessageDisplayPreference('compact');
|
||||
cy.visit(offTopicUrl);
|
||||
|
||||
@@ -24,6 +24,7 @@ describe('Leaving channel', () => {
|
||||
let post1;
|
||||
|
||||
beforeEach(() => {
|
||||
cy.visit('/');
|
||||
cy.apiAdminLogin();
|
||||
cy.apiInitSetup().then(({team, channel, user}) => {
|
||||
testUser = user;
|
||||
|
||||
@@ -71,7 +71,7 @@ describe('channels > channel header', {testIsolation: true}, () => {
|
||||
cy.apiLogin(testUser);
|
||||
});
|
||||
|
||||
it('webapp should show the Playbook channel header button', () => {
|
||||
it.skip('webapp should show the Playbook channel header button', () => {
|
||||
// # Navigate directly to a non-playbook run channel
|
||||
cy.visit(`/${testTeam.name}/channels/town-square`);
|
||||
|
||||
@@ -94,7 +94,7 @@ describe('channels > channel header', {testIsolation: true}, () => {
|
||||
cy.get('#playbooksChannelHeaderButton').contains('Playbooks');
|
||||
});
|
||||
|
||||
it('webapp should make the Playbook channel header button active when opened', () => {
|
||||
it.skip('webapp should make the Playbook channel header button active when opened', () => {
|
||||
// # Navigate directly to a non-playbook run channel
|
||||
cy.visit(`/${testTeam.name}/channels/town-square`);
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user