diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-04 02:03:04 -0800 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-04 02:03:04 -0800 |
commit | 5f7d4a13aad4cae88439595ffaf7508b58af49bd (patch) | |
tree | 5419982cb9b8590470ed5499923caccf56bf8116 /scripts | |
parent | d59603f1bbdc400c2a5194bf4a720b3df17c4304 (diff) |
Test library
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/test.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index 54b29f2..737c653 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -2,7 +2,12 @@ declare -a arr=("core" "client" "server") -# start with unit tests for +# start by testing +# library code +cd lib +yarn test +cd .. +# then unit tests for # each package for i in "${arr[@]}" do |