Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test(cypress): update selector for tables description
Signed-off-by: Arthur Schiwon <[email protected]>
  • Loading branch information
blizzz committed Oct 8, 2024
commit 3d44745f7010b477f16a320b3915dec2a93c0d4a
4 changes: 2 additions & 2 deletions cypress/e2e/tables-table.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('Manage a table', () => {
cy.contains('button', 'Create row').should('be.visible')
cy.contains('h1', 'to do list').should('be.visible')
cy.contains('table th', 'Task').should('exist')
cy.contains('.paragraph-content', 'to Do List description').should('be.visible')
cy.contains('.text-editor__content p', 'to Do List description').should('be.visible')
})

it('Create with import', () => {
Expand Down Expand Up @@ -71,7 +71,7 @@ describe('Manage a table', () => {

cy.wait(10).get('.toastify.toast-success').should('be.visible')
cy.get('.app-navigation__list').contains('ToDo list').should('exist')
cy.contains('.paragraph-content', 'Updated ToDo List description').should('be.visible')
cy.contains('.text-editor__content p', 'Updated ToDo List description').should('be.visible')
})

it('Delete', () => {
Expand Down