Skip to content

Commit

Permalink
fix: remove unnecessary space from test
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrkollar committed Aug 9, 2024
1 parent 56c4d19 commit d7c1f3c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/attributes/check-required-attributes.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ describe('Testing disabling enabled attributes', () => {
{ retries: { runMode: 2, openMode: 2 } },
() => {
cy.get(
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner '
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner '
).click()
cy.get(
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
).should('be.visible')
cy.get(
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
).click()
cy.contains(
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
).should('not.exist')
}
)
Expand Down

0 comments on commit d7c1f3c

Please sign in to comment.