fix(cli): update deploy test to match latest migration (#22)

This commit is contained in:
小墨 2026-04-13 08:01:14 +00:00
parent 9d8ebe9f74
commit 9088487673

View File

@ -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) {