Skip to content

Commit

Permalink
Allow running only a single e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaswolf committed Sep 3, 2024
1 parent cf98c1c commit db02b8e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion e2e/run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ cd $TESTS_BASE_DIR
rm -r composer.lock vendor || true
composer install

for TEST_DIR in typo3-typoscript typo3-xml typo3-yaml
ALL_TESTS=$(ls -d $TESTS_BASE_DIR)
TESTS_TO_RUN=${1:-$ALL_TESTS}

echo "Running tests: " $TESTS_TO_RUN

for TEST_DIR in $TESTS_TO_RUN
do
set +x
echo
Expand Down

0 comments on commit db02b8e

Please sign in to comment.