mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 12:51:00 +00:00
13 lines
499 B
PHP
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');
|