Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/developer-guide/frontend-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down