Add backend tests to makefile

This commit is contained in:
Florian Dupret 2022-01-17 16:46:52 +01:00
commit 939bf551eb

View file

@ -7,8 +7,11 @@ frontend:
install-frontend:
cd src/Ombi/ClientApp && yarn
install-tests:
install-frontend-tests:
cd tests && yarn
tests:
cd tests && npx cypress open
frontend-tests:
cd tests && npx cypress run
backend-tests:
cd src/Ombi.Core.Tests && dotnet test