We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1e3888 commit fb08443Copy full SHA for fb08443
cypress/e2e/tables-share.cy.js
@@ -6,7 +6,7 @@ let localUser
6
let localUser2
7
let tableTitle = 'Shared todo'
8
9
-describe('Manage a table', () => {
+describe('Share a table', () => {
10
11
before(function() {
12
cy.createRandomUser().then(user => {
@@ -30,6 +30,7 @@ describe('Manage a table', () => {
30
cy.get('[data-cy="customTableAction"] button').click()
31
cy.get('[data-cy="dataTableShareBtn"]').click()
32
cy.get('[data-cy="shareFormSelect"] input').type(localUser2.userId)
33
+ cy.wait(1000)
34
cy.get(`.vs__dropdown-menu [user="${localUser2.userId}"]`).click()
35
cy.wait(1000)
36
cy.get('[data-cy="sharedWithList"]').contains(localUser2.userId).should('exist')
0 commit comments