2019-08-15 12:50:15 +08:00

8 lines
109 B
Bash
Executable File

#!/bin/bash
cd `dirname $0`
# $1 is an opportunity to give -u
for f in __tests__/*.js; do
jest $f $1
done