summaryrefslogtreecommitdiff
path: root/scripts/test.sh
blob: 6cbe3dc3f8a3b42eb9f9085e12b547bfa5d797ab (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

declare -a arr=("core" "client" "server")

for i in "${arr[@]}"
do
  cd $i
  yarn test
  cd ..
done