Fix conductor boundary check fixture

This commit is contained in:
Andrey Avtomonov 2026-05-11 00:17:51 +02:00
parent 379abc69f2
commit e497bca456

View file

@ -31,10 +31,11 @@ describe('Conductor workspace scripts', () => {
it('runs the KTX daemon on the documented fixed local port', async () => {
const runScript = await readText('scripts/conductor-run.sh');
const legacyServerPackagePattern = new RegExp(`frontend|@${['kae', 'lio'].join('')}/server|python-service|npx`);
assert.match(runScript, /pnpm run build/);
assert.match(runScript, /source \.venv\/bin\/activate/);
assert.match(runScript, /uv run ktx-daemon serve-http --host 127\.0\.0\.1 --port 8765/);
assert.doesNotMatch(runScript, /frontend|@kaelio\/server|python-service|npx/);
assert.doesNotMatch(runScript, legacyServerPackagePattern);
});
});