mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
8 lines
109 B
Bash
Executable File
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 |