Skip to content

Commit

Permalink
fix cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Jan 28, 2025
1 parent 66906e4 commit 49c2890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol-designer/cypress/support/SupportModules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const executeModSteps = (action: ModActions): void => {
.click({ force: true })
break
case ModActions.AddTemperatureStep:
cy.contains('button', 'Temperature').click()
cy.contains('button', 'Temperature').click({ force: true })
break
case ModActions.ActivateTempdeck:
cy.contains(ModContent.DecativeTempDeck)
Expand All @@ -72,7 +72,7 @@ export const executeModSteps = (action: ModActions): void => {
.click()
break
case ModActions.SaveButtonTempdeck:
cy.contains(ModContent.Save).click()
cy.contains(ModContent.Save).click({ force: true })
break
default:
throw new Error(`Unrecognized action: ${action as string}`)
Expand Down

0 comments on commit 49c2890

Please sign in to comment.