Files
InvoiceShelf/tests/Pest.php
T

13 lines
499 B
PHP

<?php
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
uses(TestCase::class, RefreshDatabase::class)->in('Feature');
uses(TestCase::class, RefreshDatabase::class)->in('Unit');
// The module-system tests scaffold real modules on disk (Modules/ScaffoldProbe).
// Paratest isolates the database but not that shared filesystem path, so run this
// group serially after the parallel pass to avoid cross-worker collisions.
uses()->group('modules')->in('Feature/Company/Modules');