mirror of
https://github.com/nextcloud/server.git
synced 2025-02-19 07:14:48 +00:00
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')
|
|
})
|
|
})
|