2017-05-14 13:22:31 +02:00

7 lines
70 B
Bash

#!/bin/sh -e
for f in *_test.js; do
echo RUNNING $f
node $f
done