6 lines
57 B
Plaintext
6 lines
57 B
Plaintext
|
set -e
|
||
|
for t in test/*.js; do
|
||
|
echo "# $t"
|
||
|
node $t
|
||
|
done
|