hub-copy-env.test.mjs
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d
docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge
Human
17 hours 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
1 commit
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d
docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge
Human
17 hours ago