Removed test file after running test

A side-effect of running the unit tests is the resulting compiled.js file. This change cleans that up.
This commit is contained in:
Peter Breuls 2013-05-09 22:22:43 +02:00
parent c2986f66f1
commit 58b37eb33c

View file

@ -16,6 +16,7 @@
<target name="test" depends="update">
<echo msg="Running PHPunit..." />
<exec command="php vendor/bin/phpunit " passthru="true" />
<exec command="rm compiled.js" />
<echo msg="Test done." />
</target>