blob: a161f9ec4c7b501ba48935613ea62538aa9a0a48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<phpunit stopOnError="true" stopOnFailure="true" colors="true">
<testsuites>
<testsuite name="Kanboard">
<directory>acceptance</directory>
</testsuite>
</testsuites>
<php>
<const name="SELENIUM_HOST" value="localhost" />
<const name="SELENIUM_PORT" value="4444" />
<const name="DEFAULT_BROWSER" value="firefox" />
<const name="KANBOARD_APP_URL" value="http://localhost:8001" />
</php>
</phpunit>
|