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