From 57397a9f8b3d10780b667181c52d7e48274d2a23 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 9 Sep 2024 17:19:40 +0200 Subject: [PATCH] test: Adjust Cypress to use stable30 as base branch Signed-off-by: Ferdinand Thiessen --- cypress.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress.config.ts b/cypress.config.ts index 1fbb98392..d6a2ee562 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -69,7 +69,7 @@ export default defineConfig({ // Before the browser launches // starting Nextcloud testing container - const ip = await startNextcloud(process.env.BRANCH) + const ip = await startNextcloud(process.env.BRANCH ?? 'stable30') // Setting container's IP as base Url config.baseUrl = `http://${ip}/index.php` await waitOnNextcloud(ip)