Skip to content

Commit

Permalink
Merge pull request #46310 from nextcloud/fix/cypress-wait-apps
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Jul 9, 2024
2 parents ddb9ef8 + cf92cf3 commit 99feafa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cypress/e2e/settings/apps.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@ describe('Settings: App management', { testIsolation: true }, () => {

// I am logged in as the admin
cy.login(admin)

// Intercept the apps list request
cy.intercept('GET', '*/settings/apps/list').as('fetchAppsList')

// I open the Apps management
cy.visit('/settings/apps/installed')

// Wait for the apps list to load
cy.wait('@fetchAppsList')
})

it('Can enable an installed app', () => {
Expand Down

0 comments on commit 99feafa

Please sign in to comment.