feat: integration tests

This commit is contained in:
Nathnael
2026-08-03 10:51:43 +00:00
parent 6f137a11c3
commit f103b51de5
38 changed files with 7306 additions and 228 deletions

21
integration/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "@edr/freight-integration",
"version": "0.0.0",
"private": true,
"description": "API-level integration tests for the freight API against the real payment microservice",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"@types/supertest": "^6.0.2",
"pg": "^8.13.0",
"supertest": "^7.0.0",
"typescript": "^5.5.4",
"vitest": "^2.1.2"
}
}