Fix 12 failing Cypress E2E tests in cypress-run (20.x, chrome) CI job#106
Closed
Copilot wants to merge 28 commits into
Closed
Fix 12 failing Cypress E2E tests in cypress-run (20.x, chrome) CI job#106Copilot wants to merge 28 commits into
Copilot wants to merge 28 commits into
Conversation
* runProject is allowed when project status is stopped, finished, failed, and unknown * fix loop restart: correctly detect and resume stopped loops - In _loopHandler: detect restart when state is 'running' (not just 'not-started'), since stopped projects leave loop components with state='running' on disk - In _loopHandler restart path: use currentIndex (the interrupted iteration) instead of prevIndex (the already-finished iteration) when looking up the instance directory to resume from - In _PSHandler: same fix — detect restart when state is 'running' or 'not-started' Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix: sanitize staged wheel.json state before restart commit When a project restarts, gitCommit was committing execution states (stopped/failed/running) that were staged in *.wheel.json files. Add sanitizeStagedJsonFiles() which, before the restart gitCommit: 1. Finds all staged *.wheel.json files via gitStatus 2. Saves their original content 3. Writes a sanitized version (state set to 'not-started') and re-stages After gitCommit, restoreSanitizedJsonFiles() writes the originals back to the working tree, so: - HEAD has clean 'not-started' state - Index matches HEAD (no staged changes) - Working tree retains original content (currentIndex etc. intact for loop restart logic) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * do not call git add after project state changed when project execution starts * - Change project status color to red when it stopped by task-failed - show failed task list on hover to status field * fix bug * [skip ci] update version number * update document about restarting --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: version-number-updater[bot] <action@github.com>
- update documnets
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job cypress-run (20.x, chrome)
Fix 12 failing Cypress E2E tests in cypress-run (20.x, chrome) CI job
Jun 5, 2026
so5
requested changes
Jun 5, 2026
so5
left a comment
Collaborator
There was a problem hiding this comment.
you have to make PR to dev2025 not master
Contributor
Author
The PR branch is already based on commits that are now part of |
so5
requested changes
Jun 5, 2026
so5
left a comment
Collaborator
There was a problem hiding this comment.
E2E test is still failed. please fix them all.
- applicationToolBar.vue: move v-bind="props" from v-img to <a> so
Vuetify renders the actual <img> DOM node; cy.get("img") now finds it
- task.cy.js line 1170: use .find("input").first().scrollIntoView()
instead of scrollIntoView on the full v-data-table container
Contributor
Author
Fixed in commit
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
8 test files (12 tests) were failing in CI due to three distinct root causes: a prior commit renaming dialog buttons without updating tests, Vuetify
v-imglazy-loading preventingcy.get("img")from finding the element, and overflow-clipped elements in the navigation drawer failing Cypress visibility checks.Button text mismatches (commit
8c83aff7renamed dialog buttons)commands.jsscriptEdit:/^keep changes$/i→/Keep changes/i(button is now "Keep changes and exit")ps.cy.jsafter-each hook:"discard all changes"→/Discard changes/i(button is now "Discard changes and exit")Vuetify
v-imglazy loading (auth.cy.js)homePageDisplayed()doescy.get("img")which never finds the element because Vuetify'sv-imgdefers rendering the<img>DOM node until IntersectionObserver fires. Addedeagerprop:Overflow clipping in scrollable navigation drawer
Output file delete buttons and elements in lower expansion panels (advanced, remote file) fall outside the drawer's visible scroll area. Added
.scrollIntoView()before.should("be.visible")in:storage.cy.js,hpciss.cy.js,hpcisstar.cy.js,stepjobTask.cy.js— output file delete buttontask.cy.js— shell script autocomplete input (advanced panel) and exclude list form (remote file panel)