Files
portal/app/tests/Feature/Supplier/SupplierExportModeSeedTest.php
T
2026-05-20 10:59:27 +03:00

14 lines
353 B
PHP

<?php
declare(strict_types=1);
use Illuminate\Support\Facades\DB;
it('seeds supplier_export_mode = batch by default', function (): void {
$row = DB::table('system_settings')->where('key', 'supplier_export_mode')->first();
expect($row)->not->toBeNull()
->and($row->value)->toBe('batch')
->and($row->type)->toBe('string');
});