14 lines
353 B
PHP
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');
|
|
});
|