Deploy Ladill Transfer / deploy (push) Successful in 27s
Billing lists per-transfer storage costs and monthly estimates; Wallet stays focused on balance and top-up. Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
447 B
PHP
21 lines
447 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->withoutVite();
|
|
|
|
foreach (['storage/framework/views', 'storage/framework/cache/data'] as $dir) {
|
|
if (! is_dir($path = base_path($dir))) {
|
|
mkdir($path, 0755, true);
|
|
}
|
|
}
|
|
}
|
|
}
|