1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/scripts/test.sh

13 lines
157 B
Bash
Raw Normal View History

2019-06-26 19:39:13 +02:00
#!/bin/bash
2019-03-07 14:54:30 +01:00
set -e
2019-03-24 02:10:00 +01:00
2019-03-07 14:54:30 +01:00
components="server client"
for component in $components
do
echo "Testing: $component"
cd $component
npm test
cd ..
2019-03-24 02:10:00 +01:00
done