From e90e0779f3ccdc18c9143c0cf73adc53c5dc10dc Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 7 May 2013 18:01:28 +0200 Subject: make it easier to run js tests --- Makefile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 14cf6b3fb..1cffbeba5 100644 --- a/Makefile +++ b/Makefile @@ -36,17 +36,21 @@ dist: clean git archive HEAD --format=zip --prefix=$(app_name)/ > $(package_name).zip -test: unit integration acceptance +# tests +test: javascript-tests unit-tests integration-tests acceptance-tests - -unit: +unit-tests: phpunit tests/unit -integration: +integration-tests: phpunit tests/integration -acceptance: - cd tests/acceptance; make +acceptance-tests: + cd tests/acceptance; make headless + + +javascript-tests: + cd js; make test -- cgit v1.2.3