Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

[Behat] Update element count expectancies in tests #187

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,20 @@
</target>

<target name="phpspec" description="Run phpspec">
<exec command="./vendor/bin/phpspec run" passthru="true" checkreturn="true"/>
<exec command="./vendor/bin/phpspec --ansi run" passthru="true" checkreturn="true"/>
</target>

<target name="phpunit" description="Run phpunit">
<exec command="./vendor/bin/phpunit" passthru="true" checkreturn="true"/>
</target>

<target name="behat" description="Run behat">
<exec command="./vendor/bin/behat" passthru="true" checkreturn="true"/>
<exec command="./vendor/bin/behat --colors" passthru="true" checkreturn="true"/>
</target>

<target name="phpstan" description="Run phpstan">
<exec command="./vendor/bin/phpstan analyse -l 7 -c phpstan.neon src tests features" passthru="true" checkreturn="true"/>
<exec command="./vendor/bin/phpstan --ansi analyse -l 7 -c phpstan.neon src tests features" passthru="true"
checkreturn="true"/>
</target>

<target name="php-cs-fixer-check" description="Run php-cs-fixer check">
Expand Down
Loading