mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-16 21:53:07 +00:00
Fix agent output validation to prevent false verified status (#807)
* Changes from fix/cursor-fix * feat: Enhance provider error messages with diagnostic context, address test failure, fix port change, move playwright tests to different port * Update apps/ui/src/components/views/board-view/dialogs/add-feature-dialog.tsx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * ci: Update test server port from 3008 to 3108 and add environment configuration * fix: Correct typo in health endpoint URL and standardize port env vars --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
@@ -8,10 +8,11 @@ import { promisify } from 'util';
|
||||
|
||||
const execAsync = promisify(exec);
|
||||
|
||||
const SERVER_PORT = process.env.TEST_SERVER_PORT || 3008;
|
||||
const UI_PORT = process.env.TEST_PORT || 3007;
|
||||
const SERVER_PORT = process.env.TEST_SERVER_PORT || 3108;
|
||||
const UI_PORT = process.env.TEST_PORT || 3107;
|
||||
const USE_EXTERNAL_SERVER = !!process.env.VITE_SERVER_URL;
|
||||
|
||||
console.log(`[KillTestServers] SERVER_PORT ${SERVER_PORT}`);
|
||||
console.log(`[KillTestServers] UI_PORT ${UI_PORT}`);
|
||||
async function killProcessOnPort(port) {
|
||||
try {
|
||||
const hasLsof = await execAsync('command -v lsof').then(
|
||||
|
||||
Reference in New Issue
Block a user