1
0
Fork 0
mirror of synced 2024-07-17 12:25:55 +12:00
appwrite/tests/e2e/Services/VCS/VCSBase.php
2023-10-27 19:43:07 +05:30

18 lines
294 B
PHP

<?php
namespace Tests\E2E\Services\VCS;
use Utopia\App;
trait VCSBase
{
protected function setUp(): void
{
parent::setUp();
if (App::getEnv('_APP_VCS_GITHUB_PRIVATE_KEY') === 'disabled') {
$this->markTestSkipped('VCS is not enabled.');
}
}
}