mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
13 lines
189 B
Bash
Executable File
13 lines
189 B
Bash
Executable File
#/usr/bin/env/sh
|
|
set -e
|
|
|
|
components="server client"
|
|
|
|
for component in $components
|
|
do
|
|
printf "\n\nReporting coverage: $component\n"
|
|
cd $component
|
|
npm run coverage
|
|
cd ..
|
|
done
|