hub-copy-env.test.mjs
sha256:65ccb454656ea5acdea0a10e559b78bcde1eb6ff753ecc2911bc99d1c3d7cadd
feat(calendar): enforce agent context tiers in retrieval AP…
Human
minor
⚠ breaking
1 day ago
| 1 | /** |
| 2 | * Ensures the Hub "Copy URL, token & vault" block stays short (one doc link, not a wall of # comments). |
| 3 | */ |
| 4 | import { readFileSync } from 'node:fs'; |
| 5 | import { fileURLToPath } from 'node:url'; |
| 6 | import { dirname, join } from 'node:path'; |
| 7 | import test from 'node:test'; |
| 8 | import assert from 'node:assert/strict'; |
| 9 | |
| 10 | const root = join(dirname(fileURLToPath(import.meta.url)), '..'); |
| 11 | const hubPath = join(root, 'web/hub/hub.js'); |
| 12 | const hubSrc = readFileSync(hubPath, 'utf8'); |
| 13 | |
| 14 | test('web/hub/hub.js: copy block uses INTEGRATION_DOC_URL and a short curl header hint (no long REST/MCP essay)', () => { |
| 15 | assert.match(hubSrc, /INTEGRATION_DOC_URL/); |
| 16 | assert.doesNotMatch(hubSrc, /# Hub REST API \(scripts/); |
| 17 | assert.match(hubSrc, /Example curl/); |
| 18 | assert.match(hubSrc, /Authorization: Bearer/); |
| 19 | }); |
File History
2 commits
sha256:65ccb454656ea5acdea0a10e559b78bcde1eb6ff753ecc2911bc99d1c3d7cadd
feat(calendar): enforce agent context tiers in retrieval AP…
Human
minor
⚠
1 day ago
sha256:9103f98c89257ed2b01c237cea895dabb3e85ea337dccb1161c175e4422355b6
docs: accept Calendar Events v0 spec with Phase 0 security …
Human
2 days ago