beyondcode / dusk-dashboard

A beautiful dashboard for your Laravel Dusk tests
https://pociot.dev/8-introducing-laravel-dusk-dashboard
MIT License
558 stars 62 forks source link

Fix issue with dusk configs #79

Open LukeTowers opened 2 years ago

LukeTowers commented 2 years ago

This fixes an issue that occurs with phpunit.dusk.xml files that have test suite paths defined in a "formatted" style.

Previously the following would break:

<testsuites>
    <testsuite name="Browser Test Suite">
        <directory suffix="Test.php">
            ./tests/Browser
        </directory>
    </testsuite>
</testsuites>

And it would require the following change:

<testsuites>
    <testsuite name="Browser Test Suite">
        <directory suffix="Test.php">./tests/Browser</directory>
    </testsuite>
</testsuites>