mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
7 lines
70 B
Bash
Executable File
7 lines
70 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
for f in *_test.js; do
|
|
echo RUNNING $f
|
|
node $f
|
|
done
|