Skip to content

Commit

Permalink
test: add version toggling for TE download test
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkrulltott committed Dec 28, 2023
1 parent a417a8e commit d4d29ec
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions cypress/integration/download.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,19 @@ describe('download', () => {
downloadIsEnabled()
})

it('download button disables when required dimensions are selected (tracked entity)', () => {
goToStartPage()
it(
['>=41'],
'download button disables when required dimensions are selected (tracked entity)',
() => {
goToStartPage()

downloadIsDisabled()
downloadIsDisabled()

selectTrackedEntityWithType('Person')
selectTrackedEntityWithType('Person')

clickMenubarUpdateButton()
clickMenubarUpdateButton()

downloadIsEnabled()
})
downloadIsEnabled()
}
)
})

0 comments on commit d4d29ec

Please sign in to comment.