From 6e689fb825b10fe229ebd9cedd0f770e374dd0ee Mon Sep 17 00:00:00 2001 From: Amaresh <6077298+amareshb@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:45:16 -0800 Subject: [PATCH 1/2] feat: Enhance WIP testing documentation Added instructions for testing and linting on the frontend code. --- development/wip-testing.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/development/wip-testing.md b/development/wip-testing.md index c16d39c..8bc9f95 100644 --- a/development/wip-testing.md +++ b/development/wip-testing.md @@ -1,3 +1,23 @@ # WIP: Testing -TODO :) +**Frontend** + +Make sure you are in the frontend directory +``` +cd frontend/ +``` + +## To check if all existing and new tests are passing +``` +pnpm test +``` + +## If you want to test a specific pattern +``` +npm test -- --testPathPattern="Settings.spec" --watchAll=false +``` + +## To run Linter +``` +pnpm lint +``` From d2a051f0eaf7ff0b21601e11208d673648d1ca28 Mon Sep 17 00:00:00 2001 From: Amaresh <6077298+amareshb@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:48:22 -0800 Subject: [PATCH 2/2] Update Docker Compose instructions for Kafka UI Added instructions to update Kafka UI image version in Docker Compose. --- development/building/with-docker.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/development/building/with-docker.md b/development/building/with-docker.md index 806cad2..e4098eb 100644 --- a/development/building/with-docker.md +++ b/development/building/with-docker.md @@ -26,6 +26,8 @@ A successful build should produce a docker image named `ghcr.io/kafbat/kafka-ui` **Using Docker Compose** * Start the app using docker image built in step 1 along with Kafka clusters: +* Edit the `./.dev/dev.yaml` and update `image: ghcr.io/kafbat/kafka-ui:` + * `` - is the one you just built in the previous step ```bash docker-compose -f ./.dev/dev.yaml up -d