in(...filesAndFoldersExcluding(['WithoutTenancy'])); function pest(): \Orchestra\Testbench\TestCase { return Pest\TestSuite::getInstance()->test; } function filesAndFoldersExcluding(array $exclude = []): array { $dirs = scandir(__DIR__); return array_filter($dirs, fn($dir) => ! in_array($dir, array_merge(['.', '..'], $exclude) , true)); }