From c3769d5736044c101f7a7f9f9d8a976e06f6caca Mon Sep 17 00:00:00 2001 From: Ekhorn Date: Wed, 15 Apr 2026 16:32:42 +0200 Subject: [PATCH] Update frontend testing docs to reflect manager will start automatically --- docs/developer-guide/frontend-testing.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/developer-guide/frontend-testing.md b/docs/developer-guide/frontend-testing.md index af533401..b99b1dd3 100644 --- a/docs/developer-guide/frontend-testing.md +++ b/docs/developer-guide/frontend-testing.md @@ -107,7 +107,13 @@ npx playwright install --with-deps chromium See the [Playwright Intro](https://playwright.dev/docs/intro) for more. -5. (Only for apps) The manager app or any app that you would want to test must first be running. The recommended way is to build the manager docker image first using `docker compose -p openremote -f profile/dev-ui.yml up -d --build`. Having the frontend be served by the manager is much faster than serving the frontend using Rspack. +5. (Only for apps) The manager app or any app that you would want to test must first be running. When you start app tests they'll automatically start the manager, so ensure the required containers are up using: + +```sh +docker compose -p openremote -f profile/dev-testing.yml up -d +``` + +> Info: Having the frontend be served by the manager is much faster than serving the frontend using Rspack. ### Writing your first test