fixup! Add summary types and listing methods to CatalogModel
fixup! Add summary types and listing methods to CatalogModel Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Fredrik Adelöw <freben@spotify.com>
This commit is contained in:
@@ -79,7 +79,7 @@ describe('createGetCatalogModelDescriptionAction', () => {
|
||||
input: {},
|
||||
});
|
||||
|
||||
const description = result.output.description as string;
|
||||
const description = (result as any).output.description as string;
|
||||
|
||||
expect(description).toContain('# Catalog Model');
|
||||
expect(description).toContain('## Entity Kinds');
|
||||
@@ -127,7 +127,7 @@ describe('createGetCatalogModelDescriptionAction', () => {
|
||||
input: {},
|
||||
});
|
||||
|
||||
const description = result.output.description as string;
|
||||
const description = (result as any).output.description as string;
|
||||
|
||||
expect(description).toContain('# Catalog Model');
|
||||
expect(description).toContain('## Entity Kinds');
|
||||
|
||||
Reference in New Issue
Block a user