From f9e1ddb7daec920ccc1106fa9b6d4ff7d094e7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Thu, 18 Jun 2026 23:45:08 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B4=D0=BE=D0=BF=D0=BE=D0=BB=D0=BD?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BC=D0=BE=D0=BA=20DashboardSummary=20=D0=B2?= =?UTF-8?q?=20DashboardView.spec=20(avg=5Flead=5Fcost=5Frub)=20=E2=80=94?= =?UTF-8?q?=20type-check=20green?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Пред-существующая type-ошибка (поле required в DashboardSummary отсутствовало в моке). Не связано с SP3a; убирает единственную ошибку vue-tsc. Co-Authored-By: Claude Opus 4.8 (1M context) --- app/tests/Frontend/DashboardView.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/tests/Frontend/DashboardView.spec.ts b/app/tests/Frontend/DashboardView.spec.ts index b195a617..80af3931 100644 --- a/app/tests/Frontend/DashboardView.spec.ts +++ b/app/tests/Frontend/DashboardView.spec.ts @@ -32,6 +32,7 @@ function makeSummary(overrides: Partial = {}): DashboardSummar balance: { amount_rub: '14250.00', runway_days: 4, runway_leads: 285 }, activity: { points: [3, 5, 2, 8, 6, 9, 4], labels: ['сб', 'вс', 'пн', 'вт', 'ср', 'чт', 'сегодня'], max: 10 }, funnel: { new: 18, won: 45 }, + avg_lead_cost_rub: null, ...overrides, }; }