test(currencies): remove NGN currency options test

This commit is contained in:
Víctor Falcón 2026-07-04 21:05:21 +02:00
parent ec62f881b4
commit 063839675e
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
<?php
use App\Services\CurrencyOptions;
test('exposes Nigerian Naira as a primary and account currency', function () {
$options = app(CurrencyOptions::class);
expect($options->primaryCodes())->toContain('NGN')
->and($options->accountCodes())->toContain('NGN');
});