Configure test fixtures and implement conference page functional test

This commit is contained in:
2024-07-28 18:27:27 -04:00
parent 1d0f293827
commit 3b259e058b
3 changed files with 72 additions and 2 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
SHELL := /bin/bash
tests:
symfony console doctrine:database:drop --force --env=test || true
symfony console doctrine:database:create --env=test
symfony console doctrine:migrations:migrate -n --env=test
symfony console doctrine:fixtures:load -n --env=test
symfony php bin/phpunit $(MAKECMDGOALS)
.PHONY: tests