From cd0deacbc15137a394b1288f0679b4a8b9c5577c Mon Sep 17 00:00:00 2001 From: Theresa Gresch Date: Thu, 25 Jun 2026 15:29:11 +0200 Subject: [PATCH] Tests: Make acceptance tests more stable --- frontend/tests/acceptance/acceptance-public/sphere.js | 2 +- frontend/tests/acceptance/page-model/photo-edit.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/tests/acceptance/acceptance-public/sphere.js b/frontend/tests/acceptance/acceptance-public/sphere.js index 609dc99f7..9fc6e175b 100644 --- a/frontend/tests/acceptance/acceptance-public/sphere.js +++ b/frontend/tests/acceptance/acceptance-public/sphere.js @@ -41,5 +41,5 @@ test.meta("testID", "sphere-003").meta({ mode: "public" })("Common: Opens 360° await photoviewer.openPhotoViewer("uid", uid); await t.expect(Selector("div.pswp__media--sphere").exists).ok({ timeout: 5000 }); - await t.expect(Selector("div.pswp__media--sphere video").exists).ok({ timeout: 10000 }); + await t.expect(Selector("div.pswp__media--sphere video").exists).ok({ timeout: 30000 }); }); diff --git a/frontend/tests/acceptance/page-model/photo-edit.js b/frontend/tests/acceptance/page-model/photo-edit.js index 9b6b60579..ae6fe2fae 100644 --- a/frontend/tests/acceptance/page-model/photo-edit.js +++ b/frontend/tests/acceptance/page-model/photo-edit.js @@ -21,7 +21,7 @@ export default class Page { this.locationInput = Selector("div.p-meta-location-dialog .input-coordinates input", { timeout: 15000 }); this.locationConfirm = Selector("div.p-meta-location-dialog button.action-confirm", { timeout: 15000 }); this.locationCancel = Selector("div.p-meta-location-dialog button.action-cancel", { timeout: 15000 }); - this.locationMarker = Selector("div.maplibregl-marker", { timeout: 15000 }); + this.locationMarker = Selector("div.maplibregl-marker", { timeout: 30000 }); this.batchDialog = Selector("div.v-dialog--batch-edit"); this.batchDialogTitle = Selector("div.v-dialog--batch-edit div.v-toolbar-title");