Skip to content

Commit ae6471b

Browse files
committed
wip
1 parent 221f05d commit ae6471b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
install: false
5151

5252
- name: Upload Cypress screenshots
53-
if: failure()
53+
if: ${{ matrix.react == '19' && failure() }}
5454
uses: actions/upload-artifact@v4
5555
with:
5656
name: cypress-screenshots-${{ matrix.react }}
5757
path: cypress/screenshots
5858
if-no-files-found: ignore
5959

6060
- name: Upload Cypress videos
61-
if: failure()
61+
if: ${{ matrix.react == '19' && failure() }}
6262
uses: actions/upload-artifact@v4
6363
with:
6464
name: cypress-videos-${{ matrix.react }}

packages/main/src/components/ObjectPage/ObjectPage.cy.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,12 +407,11 @@ describe('ObjectPage', () => {
407407

408408
cy.get('[ui5-tabcontainer]').findUi5TabByText('Employment').focus();
409409
cy.realPress('ArrowDown');
410+
cy.wait(500);
410411
cy.realPress('ArrowDown');
411412
cy.realPress('ArrowDown');
412413
cy.realPress('Enter');
413414

414-
cy.wait(1000);
415-
416415
cy.get('[data-section-id="goals"]').shouldNeverHaveAttribute('selected');
417416
cy.get('[data-section-id="personal"]').shouldNeverHaveAttribute('selected');
418417
cy.findByText('Job Relationship').should('be.visible');

0 commit comments

Comments
 (0)