Skip to content

Commit

Permalink
chore(testing): add monorepo testing bin
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Dec 6, 2024
1 parent c835bdb commit eca21fa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions bin/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

MONOREPO_TEST="framework/core extensions/akismet extensions/approval extensions/flags extensions/likes extensions/mentions extensions/nicknames extensions/statistics extensions/sticky extensions/subscriptions extensions/suspend extensions/tags extensions/messages php-packages/testing/tests"

for test in $MONOREPO_TEST; do
echo ""
echo "===> Testing $test"
echo ""

# composer test:setup --working-dir=$test
composer test --working-dir=$test

echo ""
echo "===> Done testing $test"
echo ""
done

0 comments on commit eca21fa

Please sign in to comment.