mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-01 06:44:37 -04:00
Fixes for caches in github actions
This commit is contained in:
parent
72e947c9a4
commit
7ede5120bb
@ -11,25 +11,30 @@
|
||||
|
||||
namespace Tests\Unit;
|
||||
|
||||
use Tests\TestCase;
|
||||
use App\Models\User;
|
||||
use App\Models\Client;
|
||||
use App\Models\Account;
|
||||
use App\Models\Company;
|
||||
use App\Utils\Traits\AppSetup;
|
||||
use App\Factory\RecurringExpenseFactory;
|
||||
use App\Factory\RecurringExpenseToExpenseFactory;
|
||||
use App\Models\Account;
|
||||
use App\Models\Client;
|
||||
use App\Models\Company;
|
||||
use App\Models\User;
|
||||
use Tests\TestCase;
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
class RecurringExpenseCloneTest extends TestCase
|
||||
{
|
||||
use AppSetup;
|
||||
|
||||
public $faker;
|
||||
|
||||
protected function setUp() :void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->faker = \Faker\Factory::create();
|
||||
$this->buildCache(true);
|
||||
|
||||
}
|
||||
|
||||
public function testBadBase64String()
|
||||
|
Loading…
x
Reference in New Issue
Block a user