41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<phpunit bootstrap="tests/integration/minifluxTestCase.php" colors="true">
|
|
<php>
|
|
<const name="DB_FILENAME" value="unittest.sqlite" />
|
|
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_BASEURL" value="http://localhost/miniflux/" />
|
|
<const name="PHPUNIT_TESTSUITE_EXTENSION_SELENIUM_BROWSERS" value='
|
|
[
|
|
{
|
|
"browserName": "firefox",
|
|
"host": "localhost",
|
|
"port": 4444,
|
|
"sessionStrategy": "shared"
|
|
},
|
|
{
|
|
"browserName": "internet explorer",
|
|
"host": "localhost",
|
|
"port": 4444,
|
|
"sessionStrategy": "shared"
|
|
},
|
|
{
|
|
"browserName": "chrome",
|
|
"host": "localhost",
|
|
"port": 4444,
|
|
"sessionStrategy": "shared"
|
|
}
|
|
]
|
|
'/>
|
|
</php>
|
|
<listeners>
|
|
<listener class="PHPUnit_Extensions_Selenium2TestCase_ScreenshotListener">
|
|
<arguments>
|
|
<string>./integration/</string>
|
|
</arguments>
|
|
</listener>
|
|
</listeners>
|
|
<testsuites>
|
|
<testsuite name="Miniflux">
|
|
<directory>integration/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|