mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
16 lines
238 B
PHP
16 lines
238 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\V6;
|
||
|
|
||
|
use Tests\Feature\TestCase as BaseTestCase;
|
||
|
|
||
|
abstract class TestCase extends BaseTestCase
|
||
|
{
|
||
|
public function setUp(): void
|
||
|
{
|
||
|
putenv('X_API_VERSION=v6');
|
||
|
|
||
|
parent::setUp();
|
||
|
}
|
||
|
}
|