MM-52487: fix more playbooks tests (#23475)

* fix playbooks/channels/rhs/template_spec.js

* fix playbooks/channels/update_request_post_spec.js

* fix playbooks/runs/rdp_rhs_runinfo_spec.js

* fix playbooks/runs/rdp_rhs_statusupdates_spec.js

* remove enableexperimentalfeatures flag in e2e tests

* rdp_main_header_spec: simplify channel loaded assertion

* playbooks rhs participants: fix infinite fetch loop

* improved onboarding skipping

* simplify participants fetching
Этот коммит содержится в:
Jesse Hallam
2023-06-07 16:28:47 -03:00
коммит произвёл GitHub
родитель 36027ac1c4
Коммит 803d0c6e60
9 изменённых файлов: 51 добавлений и 120 удалений

Просмотреть файл

@@ -80,31 +80,7 @@ describe('Task Inbox >', {testIsolation: true}, () => {
const getRHS = () => cy.get('#playbooks-backstage-sidebar-right');
it('icon in global header, with experimental feature flag', () => {
// # Enable experimental feature flag
cy.apiAdminLogin().then(() => {
cy.apiEnsureFeatureFlag('enableexperimentalfeatures', true);
// # Login as testUser
cy.apiLogin(testUser);
});
// # Visit the playbooks product
cy.visit('/playbooks');
// # Verify icon present in global header icon to open
cy.findByTestId('header-task-inbox-icon').click();
});
it('icon in global header, without experimental feature flag', () => {
// # Disable experimental feature flag
cy.apiAdminLogin().then(() => {
cy.apiEnsureFeatureFlag('enableexperimentalfeatures', false);
// # Login as testUser
cy.apiLogin(testUser);
});
it('icon in global header', () => {
// # Visit the playbooks product
cy.visit('/playbooks');