chore: Add backend tests to makefile (#4473) [skip ci]

This commit is contained in:
sephrat 2022-01-22 23:05:43 +01:00 committed by GitHub
parent 70c7f0534c
commit 844f6eba4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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