diff --git a/src/commands/agent/generate/authoring-bundle.ts b/src/commands/agent/generate/authoring-bundle.ts index 4414fc1..88d0eb4 100644 --- a/src/commands/agent/generate/authoring-bundle.ts +++ b/src/commands/agent/generate/authoring-bundle.ts @@ -151,10 +151,14 @@ export default class AgentGenerateAuthoringBundle extends SfCommandAGENT'); expect(agent).to.include(`developer_name: "${bundleName}"`); + expect(agent).to.include(`agent_label: "${bundleName}"`); + expect(agent).to.include('description: "test agent role"'); }); it('should generate authoring bundle with --no-spec', async () => { @@ -80,6 +82,8 @@ describe('agent generate authoring-bundle NUTs', function () { expect(metaXml).to.include('AGENT'); expect(agent).to.include(`developer_name: "${bundleName}"`); + expect(agent).to.include(`agent_label: "${bundleName}"`); + expect(agent).to.include(`description: "${bundleName} description"`); }); it('should fail when both --spec and --no-spec are provided', async () => {