forked from in2code-de/in2publish_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.browser.xml
45 lines (43 loc) · 2.34 KB
/
phpunit.browser.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
bootstrap="Build/local/vendor/autoload.php"
cacheDirectory=".project/temp/.phpunit.cache"
executionOrder="depends,defects"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true">
<testsuites>
<testsuite name="Browser">
<directory>Tests/Browser/</directory>
</testsuite>
</testsuites>
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>Classes</directory>
</include>
</source>
<extensions>
<bootstrap class="CoStack\StackTest\Bootstrap">
<parameter name="screenshot" value="../../.project/artifacts/{seed}/{testClass}/{testMethod}/screenshot.jpg"/>
<parameter name="pageSource" value="../../.project/artifacts/{seed}/{testClass}/{testMethod}/source.html"/>
</bootstrap>
<bootstrap class="CoStack\StackTest\Extensions\Screencast\Screencast">
<parameter name="network" value="in2publish_core_default"/>
<parameter name="image" value="selenium/video:ffmpeg-6.1-20231219"/>
<parameter name="path" value="$HOST_PWD/.project/artifacts/{testClass}/{testMethod}/{seed}"/>
<parameter name="file" value="{browser-container-name}.mp4"/>
<parameter name="browser-container-name" value="selenium-node-firefox"/>
<parameter name="logs" value=".project/artifacts/logs/firefox-recorder.log"/>
</bootstrap>
<bootstrap class="CoStack\StackTest\Extensions\Screencast\Screencast">
<parameter name="network" value="in2publish_core_default"/>
<parameter name="image" value="selenium/video:ffmpeg-6.1-20231219"/>
<parameter name="path" value="$HOST_PWD/.project/artifacts/{testClass}/{testMethod}/{seed}"/>
<parameter name="file" value="{browser-container-name}.mp4"/>
<parameter name="browser-container-name" value="selenium-node-chrome"/>
<parameter name="logs" value=".project/artifacts/logs/chrome-recorder.log"/>
</bootstrap>
</extensions>
</phpunit>