From 0a26c59e5696d71b417c24eb7c32b08f27449dce Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 9 Jan 2025 09:26:58 +0100 Subject: [PATCH] test(e2e): drop viewer app We do not make use of it and this saves cloning it. Also rely on the container default of `configureNextcloud`. Signed-off-by: Max --- playwright/support/setup.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright/support/setup.ts b/playwright/support/setup.ts index c85fd2127..04ca0f2ba 100644 --- a/playwright/support/setup.ts +++ b/playwright/support/setup.ts @@ -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 @@ -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']) })