Skip to content

Commit e5e11e9

Browse files
committed
Fix phpunit.xml & Feature/Integration test directories
1 parent ed60f8d commit e5e11e9

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

phpunit.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@
66
stopOnFailure="false"
77
cacheDirectory=".phpunit.cache">
88
<testsuites>
9-
<testsuite name="Unit">
10-
<directory>tests/Unit</directory>
11-
</testsuite>
129
<testsuite name="Feature">
1310
<directory>tests/Feature</directory>
1411
</testsuite>
12+
<testsuite name="Integration">
13+
<directory>tests/Integration</directory>
14+
</testsuite>
15+
<testsuite name="Unit">
16+
<directory>tests/Unit</directory>
17+
</testsuite>
1518
</testsuites>
1619
</phpunit>

tests/Feature/.gitkeep

Whitespace-only changes.

tests/Integration/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)