mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #46310 from nextcloud/fix/cypress-wait-apps
This commit is contained in:
commit
99feafad71
1 changed files with 7 additions and 0 deletions
|
|
@ -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', () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue