hub-copy-env.test.mjs
19 lines 790 B
Raw
sha256:fbe982a22c05c6fe2e93876f250deecdb43d883f648b4e1810c7546caa9f17db docs: activate KNOWTATION- board identity and preserve livi… 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 1 commit
sha256:fbe982a22c05c6fe2e93876f250deecdb43d883f648b4e1810c7546caa9f17db docs: activate KNOWTATION- board identity and preserve livi… Human minor 1 day ago