1
0
Fork 0
mirror of synced 2024-09-15 17:09:18 +12:00
appwrite/tests/e2e/Services/VCS/VCSBase.php
2024-04-01 13:02:47 +02:00

17 lines
307 B
PHP

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