diff --git a/scripts/conductor-scripts.test.mjs b/scripts/conductor-scripts.test.mjs index be9c64c2..d14d4eb3 100644 --- a/scripts/conductor-scripts.test.mjs +++ b/scripts/conductor-scripts.test.mjs @@ -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); }); });