From 1f4fa123c5836d44810cf93520ce624550e1ecf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vi=CC=81ctor=20Falco=CC=81n?= Date: Fri, 17 Jul 2026 16:47:01 +0200 Subject: [PATCH] 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. --- tests/Feature/InertiaSharedDataTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Feature/InertiaSharedDataTest.php b/tests/Feature/InertiaSharedDataTest.php index f86c4ec1..02a7d293 100644 --- a/tests/Feature/InertiaSharedDataTest.php +++ b/tests/Feature/InertiaSharedDataTest.php @@ -99,6 +99,7 @@ test('shared feature flags do not include coinbase flag', function () { expect($props['features'])->toBe([ 'cashflow' => true, 'calculateBalancesOnImport' => false, + 'mcp' => false, ]); });