Skip to content

Commit 17e76f8

Browse files
test: Update test to prevent rehydrated DOM error in Cypress test (#31217)
* test: Update test to prevent rehydrated DOM error in Cypress test * empty commit
1 parent bc3f48a commit 17e76f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/app/cypress/e2e/runner/sessions.ui.cy.ts

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ const validateSessionsInstrumentPanel = (sessionIds: Array<string> = []) => {
77
.first()
88
.should('contain', `Sessions (${sessionIds.length})`)
99
.as('instrument_panel')
10+
11+
cy.get('.sessions-container')
12+
.first()
1013
.click()
1114

1215
sessionIds.forEach((id) => {

0 commit comments

Comments
 (0)