test(ui): add e2e and integration tests

This commit is contained in:
Tuan-Dat Tran
2026-02-23 13:48:13 +01:00
parent 00af8862d3
commit 4198b91498
9 changed files with 632 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
backend-test:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "3002:3001"
environment:
- PORT=3001
- DB_PATH=/app/data/test.db
volumes:
- test-data:/app/data
volumes:
test-data: