Frontend tests: Run each *.js file seperately

refs #4622
This commit is contained in:
Jannis Moßhammer 2013-08-29 16:01:43 +02:00 committed by Marius Hein
parent c7375d44fb
commit c77f4ff1d9
1 changed files with 3 additions and 1 deletions

View File

@ -172,5 +172,7 @@ export CASPERJS_PASS=$CASPERJS_PASS
export CASPERJS_PATH=$CASPERJS_PATH
echo Executing $EXEC $FILELIST
$EXEC $FILELIST
for JSFILE in $FILELIST;do
$EXEC $JSFILE;
done;
exit 0