Skip to content

Commit

Permalink
test(e2e): drop viewer app
Browse files Browse the repository at this point in the history
We do not make use of it and this saves cloning it.

Also rely on the container default of `configureNextcloud`.

Signed-off-by: Max <[email protected]>
  • Loading branch information
max-nextcloud committed Jan 9, 2025
1 parent 4e40167 commit 0a26c59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright/support/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import { test as setup } from '@playwright/test'
import { configureNextcloud, getContainer } from '@nextcloud/cypress/docker'
import { configureNextcloud } from '@nextcloud/cypress/docker'

/**
* We use this to ensure Nextcloud is configured correctly before running our tests
Expand All @@ -13,5 +13,5 @@ import { configureNextcloud, getContainer } from '@nextcloud/cypress/docker'
* as that only checks for the URL to be accessible which happens already before everything is configured.
*/
setup('Configure Nextcloud', async () => {
await configureNextcloud(['forms', 'viewer'], undefined, getContainer())
await configureNextcloud(['forms'])
})

0 comments on commit 0a26c59

Please sign in to comment.