Files
ladill-transfer/tests/TestCase.php
T
isaaccladandCursor 45ccd04163
Deploy Ladill Transfer / deploy (push) Successful in 27s
Differentiate Billing from Wallet with storage usage breakdown.
Billing lists per-transfer storage costs and monthly estimates; Wallet stays focused on balance and top-up.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-08 10:43:56 +00:00

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);
}
}
}
}