Skip to content

Commit

Permalink
console: Fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelJankoski committed Jul 4, 2024
1 parent c637520 commit 0f3b60b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/console/devices/onboarding/qr-scan.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe('Device onboarding with QR scan', () => {
cy.findByLabelText('DevEUI').should('have.value', devEui).should('be.disabled')
cy.findByRole('button', { name: 'Reset' }).should('be.disabled')
cy.findByLabelText('AppKey').type(generateHexValue(32))
cy.findByLabelText('End device ID').type(`eui-${device.devEui}`)
cy.findByLabelText('End device ID').should('have.value', `eui-${device.devEui}`)

cy.findByRole('button', { name: 'Register end device' }).click()

Expand Down

0 comments on commit 0f3b60b

Please sign in to comment.