fix: include mcp feature flag in InertiaSharedDataTest shared-props assertion

The shared 'features' prop now carries the mcp flag, so the exact-match
assertion for guests must include 'mcp' => false.
This commit is contained in:
Víctor Falcón 2026-07-17 16:47:01 +02:00
parent 5eafc52994
commit 1f4fa123c5
1 changed files with 1 additions and 0 deletions

View File

@ -99,6 +99,7 @@ test('shared feature flags do not include coinbase flag', function () {
expect($props['features'])->toBe([
'cashflow' => true,
'calculateBalancesOnImport' => false,
'mcp' => false,
]);
});