Skip to content

Commit

Permalink
fix: update test
Browse files Browse the repository at this point in the history
  • Loading branch information
shetzel committed Jan 14, 2025
1 parent 5f75c87 commit e22b460
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/agents.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@ describe('Agents', () => {
companyDescription: 'Provide vacation rentals and activities',
});

expect(output).to.have.property('config');
expect(output).to.have.property('topics');
expect(output.config).to.have.property('agentType', agentType);
expect(output.config).to.have.property('companyName', companyName);
expect(output).to.have.property('agentType', agentType);
expect(output).to.have.property('companyName', companyName);
expect(output.topics).to.be.an('array').with.lengthOf(10);
expect(output.topics[0]).to.have.property('name', 'Guest_Experience_Enhancement');
});
Expand Down

0 comments on commit e22b460

Please sign in to comment.