aboutsummaryrefslogtreecommitdiff
path: root/src/js/tests/build.mk
blob: b49109d211e76f0ea6324c32bf474669e9ea8030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

js-test-dir := $(path)

clean::
	$(RM) -r $(js-test-dir)/reports


# Jasmine Specs ###############################################################

ifneq "$(PHANTOM_EXE)" ""

test: test-js
test-js:
	cd $(topdir)/src/js && $(PHANTOM_EXE)                  \
	  lib/phantomjs_jasmine/phantomjs_jasminexml_runner.js \
	  tests/PhantomJSJasmineRunner.html tests/reports/

endif