From 90884876739bc82a292273fe32789cd430b81dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=A2=A8?= Date: Mon, 13 Apr 2026 08:01:14 +0000 Subject: [PATCH] fix(cli): update deploy test to match latest migration (#22) --- packages/cli/test/deploy.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/test/deploy.test.ts b/packages/cli/test/deploy.test.ts index 794fbcb..681f2e0 100644 --- a/packages/cli/test/deploy.test.ts +++ b/packages/cli/test/deploy.test.ts @@ -211,8 +211,8 @@ describe('loadMigrations (integration)', () => { // First file should be 0006_v2.sql expect(sqlFiles[0]).toBe('0006_v2.sql') - // Last file should be 0021_request_logs.sql - expect(sqlFiles[sqlFiles.length - 1]).toBe('0021_request_logs.sql') + // Last file should be the latest migration + expect(sqlFiles[sqlFiles.length - 1]).toBe('0022_projection_health.sql') // Each file should contain SQL for (const file of sqlFiles) {