Skip to content

Commit f7c2fe5

Browse files
committed
fix: add suffix to test files
Without this, all php files at tests folder will be executed by PHPUnit as a test file, but we have files that isn't test classes inside this folder. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 5e0a028 commit f7c2fe5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<testsuites>
77
<testsuite name="Units Test">
8-
<directory suffix=".php">./tests</directory>
8+
<directory suffix="Test.php">./tests</directory>
99
</testsuite>
1010
</testsuites>
1111

0 commit comments

Comments
 (0)