fix: resolve CI E2E test failures

- Fix disposed response object in Playwright route handler
- Add git user config to prevent 'empty ident' errors
- Increase server startup timeout and improve debugging
- Fix YAML indentation in E2E workflow

Resolves:
- 'Response has been disposed' error in open-existing-project test
- Git identity configuration issues in CI
- Backend server startup timing issues
This commit is contained in:
DhanushSantosh
2026-01-09 22:40:33 +05:30
parent f6fed612df
commit 7bdf5e4261
2 changed files with 43 additions and 87 deletions

View File

@@ -104,7 +104,11 @@ test.describe('Open Project', () => {
json.settings.projects = [testProject, ...existingProjects];
}
}
await route.fulfill({ response, json });
await route.fulfill({
status: response.status(),
headers: response.headers(),
json,
});
});
// Now navigate to the app