Finished implementing FileUploadService + added test workflow

This commit is contained in:
2026-04-05 11:50:44 +02:00
parent 24285c3972
commit e390012b1f
11 changed files with 323 additions and 5 deletions

View File

@@ -5,7 +5,8 @@
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "vitest run --project unit",
"test": "vitest run",
"test-unit": "vitest run --project unit",
"test-integration": "vitest run --project integration",
"test:watch": "vitest"
},
@@ -17,6 +18,7 @@
"dependencies": {
"@faker-js/faker": "^10.4.0",
"axios": "^1.14.0",
"msw": "^2.12.14"
"msw": "^2.12.14",
"uuid": "^13.0.0"
}
}