dusk-dashboard icon indicating copy to clipboard operation
dusk-dashboard copied to clipboard

Fix issue with dusk configs

Open LukeTowers opened this issue 2 years ago • 0 comments

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>

LukeTowers avatar Oct 25 '21 21:10 LukeTowers