2017-02-06 12:40:24 +00:00

7 lines
70 B
Bash
Executable File

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