Files
handlebars.js/integration-testing/run-integration-tests.sh
T
Nils Knappmeier a57b6824e0 add webpack test
2019-08-31 21:00:14 +02:00

13 lines
310 B
Bash
Executable File

#!/bin/bash
cd "$( dirname "$( readlink -f "$0" )" )" || exit 1
for i in */test.sh ; do
(
echo "----------------------------------------"
echo "-- Running integration test: $i"
echo "----------------------------------------"
cd "$( dirname "$i" )" || exit 1
./test.sh || exit 1
)
done