tests now working via make file

This commit is contained in:
filipriec
2025-06-18 14:44:38 +02:00
parent 6faf0a4a31
commit f5fae98c69
3 changed files with 49 additions and 0 deletions

13
server/Makefile Normal file
View File

@@ -0,0 +1,13 @@
# Makefile
test: reset_db run_tests
reset_db:
@echo "Resetting test database..."
@./scripts/reset_test_db.sh
run_tests:
@echo "Running tests..."
@cargo test
.PHONY: test