mirror of
https://github.com/arc53/DocsGPT.git
synced 2026-05-21 12:55:05 +00:00
* feat: postgres tests * feat: mongo cutoff * feat: mongo cutoff * feat: adjust docs and compose files * fix: mini code mongo removals * fix: tests and k8s mongo stuff * feat: test fixes * fix: ruff * fix: vale * Potential fix for pull request finding 'CodeQL / Clear-text logging of sensitive information' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * fix: mini suggestions * vale lint fix 2 * fix: codeql columns thing * fix: test mongo * fix: tests coverage * feat: better tests 4 * feat: more tests * feat: decent coverage * fix: ruff fixes * fix: remove mongo mock * feat: enhance workflow engine and API routes; add document retrieval and source handling * feat: e2e tests * fix: mcp, mongo and more * fix: mini codeql warning * fix: agent chunk view * fix: mini issues * fix: more pg fixes * feat: postgres prep on start * feat: qa tests * fix: mini improvements * fix: tests --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Siddhant Rai <siddhant.rai.5686@gmail.com>
27 lines
821 B
JSON
27 lines
821 B
JSON
{
|
|
"name": "docsgpt-e2e",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "End-to-end test suite for DocsGPT. Isolated from the frontend/ workspace so Playwright deps never touch the app bundle.",
|
|
"scripts": {
|
|
"e2e": "../../scripts/e2e/up.sh && playwright test; rc=$?; ../../scripts/e2e/down.sh; exit $rc",
|
|
"e2e:up": "../../scripts/e2e/up.sh",
|
|
"e2e:down": "../../scripts/e2e/down.sh",
|
|
"e2e:ui": "playwright test --ui",
|
|
"e2e:install": "playwright install chromium",
|
|
"e2e:report": "playwright show-report"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.59.1",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/node": "^22.9.0",
|
|
"@types/pg": "^8.20.0",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"pg": "^8.20.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|