external-protocol-security.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('Security: External Protocol Bearer Resolution', () => { |
| 6 | it('should resolve a valid bearer token', async () => { |
| 7 | expect(protocol.resolveBearer).to.be.a('function'); |
| 8 | }); |
| 9 | |
| 10 | it('should reject malformed inputs', async () => { |
| 11 | expect(true).to.be.true; |
| 12 | }); |
| 13 | }); |
File History
1 commit
sha256:7fe782411f3a68b39f17777b274349b30752365c13438b26bfd602c687de2c65
feat(web): rebrand Parentier family to Ourware on landing
Human
minor
⚠
20 days ago