mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
1aed3a1db5
Conflicts: .env app/config/collections.php app/config/roles.php app/config/specs/open-api3-latest-client.json app/config/specs/open-api3-latest-console.json app/config/specs/open-api3-latest-server.json app/config/specs/swagger2-latest-client.json app/config/specs/swagger2-latest-console.json app/config/specs/swagger2-latest-server.json app/controllers/api/account.php app/controllers/api/storage.php app/init.php composer.json composer.lock docker-compose.yml phpunit.xml src/Appwrite/Extend/Exception.php src/Appwrite/Utopia/Response.php
39 lines
1.7 KiB
XML
39 lines
1.7 KiB
XML
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="true"
|
|
>
|
|
<extensions>
|
|
<extension class="Appwrite\Tests\TestHook" />
|
|
</extensions>
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>./tests/unit</directory>
|
|
</testsuite>
|
|
<testsuite name="e2e">
|
|
<file>./tests/e2e/Client.php</file>
|
|
<directory>./tests/e2e/General</directory>
|
|
<directory>./tests/e2e/Scopes</directory>
|
|
<directory>./tests/e2e/Services/Account</directory>
|
|
<directory>./tests/e2e/Services/Realtime</directory>
|
|
<directory>./tests/e2e/Services/Avatars</directory>
|
|
<directory>./tests/e2e/Services/Databases</directory>
|
|
<directory>./tests/e2e/Services/Health</directory>
|
|
<directory>./tests/e2e/Services/Locale</directory>
|
|
<directory>./tests/e2e/Services/Projects</directory>
|
|
<directory>./tests/e2e/Services/Storage</directory>
|
|
<directory>./tests/e2e/Services/Teams</directory>
|
|
<directory>./tests/e2e/Services/Users</directory>
|
|
<directory>./tests/e2e/Services/Webhooks</directory>
|
|
<file>./tests/e2e/Services/Functions/FunctionsBase.php</file>
|
|
<file>./tests/e2e/Services/Functions/FunctionsCustomServerTest.php</file>
|
|
<file>./tests/e2e/Services/Functions/FunctionsCustomClientTest.php</file>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|