mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
5c49a54801
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
16 lines
455 B
TypeScript
16 lines
455 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
describe('Files', { testIsolation: true }, () => {
|
|
beforeEach(() => {
|
|
cy.createRandomUser().then((user) => {
|
|
cy.login(user)
|
|
})
|
|
})
|
|
|
|
it('Login with a user and open the files app', () => {
|
|
cy.visit('/apps/files')
|
|
cy.get('[data-cy-files-list] [data-cy-files-list-row-name="welcome.txt"]').should('be.visible')
|
|
})
|
|
})
|