mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 00:30:44 +00:00
9 lines
286 B
Makefile
9 lines
286 B
Makefile
|
test :: parserTests.txt
|
||
|
node ./parserTests.js --cache parserTests.txt
|
||
|
|
||
|
TESTS_URL = http://svn.wikimedia.org/svnroot/mediawiki/trunk/phase3/tests/parser/parserTests.txt
|
||
|
parserTests.txt ::
|
||
|
-if [ ! -e parserTests.txt ] ; then curl -O $(TESTS_URL) || wget $(TESTS_URL) ; fi
|
||
|
|
||
|
.PHONY: test
|