Skip to content

Commit 0861abf

Browse files
Add missing specifications field to linkedAppContext mock
LoadedAppContextOutput requires a specifications field. Added specifications: [] to the mock in both deploy.test.ts and release.test.ts to fix the type-check CI failure. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4d1eb41 commit 0861abf

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

packages/app/src/cli/commands/app/deploy.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ describe('app deploy --force deprecation warning', () => {
2828
businessName: 'test',
2929
source: OrganizationSource.Partners,
3030
},
31+
specifications: [],
3132
})
3233
vi.mocked(deploy).mockResolvedValue({app: testAppLinked()})
3334
})

packages/app/src/cli/commands/app/release.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ describe('app release --force deprecation warning', () => {
2828
businessName: 'test',
2929
source: OrganizationSource.Partners,
3030
},
31+
specifications: [],
3132
})
3233
vi.mocked(release).mockResolvedValue(undefined)
3334
})

0 commit comments

Comments
 (0)