summaryrefslogtreecommitdiffstats
path: root/cypress/e2e/0.setup.cy.js
diff options
context:
space:
mode:
Diffstat (limited to 'cypress/e2e/0.setup.cy.js')
-rw-r--r--cypress/e2e/0.setup.cy.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/cypress/e2e/0.setup.cy.js b/cypress/e2e/0.setup.cy.js
deleted file mode 100644
index 2ad54887..00000000
--- a/cypress/e2e/0.setup.cy.js
+++ /dev/null
@@ -1,28 +0,0 @@
-const userId = 'janedoe' + Date.now()
-
-describe('Social app setup', function() {
- before(function() {
- cy.nextcloudCreateUser(userId, 'p4ssw0rd')
- cy.login(userId, 'p4ssw0rd')
- })
-
- it('See the welcome message', function() {
- cy.visit('/apps/social/')
- cy.get('.social__welcome').should('contain', 'Nextcloud becomes part of the federated social networks!')
- cy.get('.social__welcome').find('.icon-close').click()
- cy.get('.social__welcome').should('not.exist')
- })
-
- it('See the home section in the sidebar', function() {
- cy.get('.app-navigation').contains('Home').click()
- cy.get('.emptycontent').should('be.visible')
- })
-
- it('See the empty content illustration', function() {
- cy.get('.app-navigation').contains('Direct messages').click()
- cy.get('.emptycontent').should('be.visible').contains('No direct messages found')
- cy.get('.app-navigation').contains('Profile').click()
- cy.get('.emptycontent').should('be.visible').contains('You have not tooted yet')
- })
-
-})