123456789101112131415161718192021222324252627282930313233 |
- 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')
- })
- })
|