49 lines
1.3 KiB
Bash
Executable File
49 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
########################################
|
|
############# Methods ##################
|
|
########################################
|
|
|
|
launchAllUserstories(){
|
|
echo ""
|
|
echo "Launching all userstories";
|
|
echo ""
|
|
|
|
npm run lint && npm run tsc && mocha --opts mocha-all-devfiles.opts ;
|
|
}
|
|
|
|
launchSingleUserstory(){
|
|
echo ""
|
|
echo "Launching the \"${USERSTORY}\" userstory";
|
|
echo ""
|
|
|
|
tsc && mocha --opts mocha-single-devfile.opts --spec dist/tests/login/Login.spec.js --spec dist/tests/devfiles/${USERSTORY}.spec.js ;
|
|
}
|
|
|
|
checkUserstoryName(){
|
|
local checkedName="$(ls tests/devfiles | grep ${USERSTORY}.spec.ts)";
|
|
|
|
if [ -z "$checkedName" ]; then
|
|
echo ""
|
|
echo "Current value USERSTORY=\"${USERSTORY}\" doesn't match to any existed test:"
|
|
echo ""
|
|
echo "$(ls tests/devfiles | sed -e 's/.spec.ts/ /g')"
|
|
echo ""
|
|
echo "Please choose one of the tests above, or unset the \"USERSTORY\" variable for launching all of them."
|
|
echo ""
|
|
|
|
exit 1;
|
|
fi
|
|
}
|
|
|
|
########################################
|
|
############# Launching ################
|
|
########################################
|
|
|
|
if [ -z "$USERSTORY" ]; then
|
|
launchAllUserstories ;
|
|
else
|
|
checkUserstoryName ;
|
|
launchSingleUserstory ;
|
|
fi
|