From ab95906f2fab4e27f69aaf9c20aece7f83976393 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Sun, 18 Jun 2023 23:41:47 +0200 Subject: [PATCH] fixed which room the testcase checks against --- webclient/cypress/e2e/coordinates.cy.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webclient/cypress/e2e/coordinates.cy.ts b/webclient/cypress/e2e/coordinates.cy.ts index c518738af..61225deeb 100644 --- a/webclient/cypress/e2e/coordinates.cy.ts +++ b/webclient/cypress/e2e/coordinates.cy.ts @@ -1,6 +1,7 @@ describe("Check if users can submit coordinates", () => { it("main page", () => { - cy.visit("http://localhost:8000/view/mi"); + // 1902.02.286 is a unimportant room in Heilbron which will likely never get a coordinate + cy.visit("http://localhost:8000/view/1902.02.286"); cy.intercept("POST", "/api/feedback/get_token", { statusCode: 201, fixture: "feedback_token.json" }); }); });