From 9013a8dfc2f5915ce04e3c16a10b2fb349ca8d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20I=C3=9Fbr=C3=BCcker?= Date: Wed, 31 Dec 2025 15:45:47 +0100 Subject: [PATCH] Add e2e make command --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 9f686d2..e1b13ef 100644 --- a/Makefile +++ b/Makefile @@ -19,5 +19,12 @@ format: npx prettier bookmarks/frontend --write npx prettier bookmarks/styles --write +e2e: + uv run playwright install chromium + rm -rf static + npm run build + uv run manage.py collectstatic --no-input + uv run pytest bookmarks/tests_e2e -n auto -o "python_files=e2e_test_*.py" + frontend: npm run dev \ No newline at end of file