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

17 lines
213 B
Bash
Raw Normal View History

2019-03-07 14:54:30 +01:00
#/usr/bin/env/sh
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
2019-05-17 11:10:06 +02:00
echo "Running End-to-End tests"
2019-06-20 10:19:00 +02:00
2019-05-17 11:10:06 +02:00
npm run test:e2e