The test "Add and delete a session launcher in the project's sessions list" found in cypress-tests/cypress/e2e/v2/sessionLaunchers.cy.ts is not re-runnable. This means that if it fails on the first attempt, then all subsequent attempts will fail too (because session launchers are not cleaned upon test failure).
Resolution: cleanup the session launcher if the test fails, so that re-runs (attemtps 2 and attempt 3) can succeed. As it is now, any flakyness in the first run will break down the entire test run (see also #4300 for why flakes can happen).
The test
"Add and delete a session launcher in the project's sessions list"found incypress-tests/cypress/e2e/v2/sessionLaunchers.cy.tsis not re-runnable. This means that if it fails on the first attempt, then all subsequent attempts will fail too (because session launchers are not cleaned upon test failure).Resolution: cleanup the session launcher if the test fails, so that re-runs (attemtps 2 and attempt 3) can succeed. As it is now, any flakyness in the first run will break down the entire test run (see also #4300 for why flakes can happen).