@@ -58,7 +58,7 @@ describe('skills utils', () => {
5858 const referencedContent = {
5959 name : 'example-content' ,
6060 relativePath : '.' ,
61- body : 'Content body' ,
61+ content : 'Content body' ,
6262 } ;
6363 const path = getSkillReferencedContentEntryPath ( { skill, referencedContent } ) ;
6464 expect ( path ) . toBe ( 'skills/platform/test-skill/./example-content.md' ) ;
@@ -69,7 +69,7 @@ describe('skills utils', () => {
6969 const referencedContent = {
7070 name : 'query-example' ,
7171 relativePath : './queries' ,
72- body : 'Query content' ,
72+ content : 'Query content' ,
7373 } ;
7474 const path = getSkillReferencedContentEntryPath ( { skill, referencedContent } ) ;
7575 expect ( path ) . toBe ( 'skills/platform/test-skill/./queries/query-example.md' ) ;
@@ -83,7 +83,7 @@ describe('skills utils', () => {
8383 const referencedContent = {
8484 name : 'alert-config' ,
8585 relativePath : './configs' ,
86- body : 'Config content' ,
86+ content : 'Config content' ,
8787 } ;
8888 const path = getSkillReferencedContentEntryPath ( { skill, referencedContent } ) ;
8989 expect ( path ) . toBe ( 'skills/observability/alert-skill/./configs/alert-config.md' ) ;
0 commit comments