mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
Fix conductor boundary check fixture
This commit is contained in:
parent
379abc69f2
commit
e497bca456
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue