external-protocol-stress.test.mjs
sha256:7fe782411f3a68b39f17777b274349b30752365c13438b26bfd602c687de2c65
feat(web): rebrand Parentier family to Ourware on landing
Human
minor
⚠ breaking
20 days ago
| 1 | import { describe, it } from 'node:test'; |
| 2 | import { expect } from 'chai'; |
| 3 | import * as protocol from '../../lib/agent/external-agent-protocol.mjs'; |
| 4 | |
| 5 | describe('Stress: External Protocol', () => { |
| 6 | it('should handle many concurrent task claims without failing basic validation', async () => { |
| 7 | expect(protocol.handleClaimTask).to.be.a('function'); |
| 8 | const tasks = Array.from({ length: 100 }, (_, i) => `task-${i}`); |
| 9 | expect(tasks.length).to.equal(100); |
| 10 | }); |
| 11 | }); |
File History
1 commit
sha256:7fe782411f3a68b39f17777b274349b30752365c13438b26bfd602c687de2c65
feat(web): rebrand Parentier family to Ourware on landing
Human
minor
⚠
20 days ago