Files
memind/release-gate/runtime-worker-entrypoint.test.mjs
john b1577a16e9
Memind CI / Test, build, and release guards (push) Failing after 12m3s
fix: harden release gate and page delivery
2026-07-26 14:32:01 +08:00

10 lines
426 B
JavaScript

import assert from 'node:assert/strict';
import fs from 'node:fs';
import test from 'node:test';
test('DeepSeek proxy main guard is explicit so bundled worker cannot bind 18036', () => {
const source = fs.readFileSync(new URL('../deepseek-no-think-proxy.mjs', import.meta.url), 'utf8');
assert.match(source, /MEMIND_DEEPSEEK_PROXY_ENTRYPOINT === '1'/);
assert.match(source, /startDeepseekNoThinkProxy\(\)\.catch/);
});