feat: implement authentication routes with login, logout, and user info retrieval
feat: add S3 bucket versioning support and related XML response handling refactor: rename temporary file paths from 'teleuploader' to 'filedrop' for consistency fix: update Swagger documentation to reflect new API name and descriptions test: add unit tests for authentication routes and utilities test: implement end-to-end tests for S3 bucket configuration and versioning chore: update environment variable defaults for new service name
This commit is contained in:
+2
-2
@@ -14,8 +14,8 @@ const cleanup = async (...paths: string[]) => {
|
||||
|
||||
describe('ZIP utilities', () => {
|
||||
it('should create a zip and extract entries by name', async () => {
|
||||
const firstPath = `/tmp/teleuploader-test-${crypto.randomUUID()}-1.txt`;
|
||||
const secondPath = `/tmp/teleuploader-test-${crypto.randomUUID()}-2.txt`;
|
||||
const firstPath = `/tmp/filedrop-test-${crypto.randomUUID()}-1.txt`;
|
||||
const secondPath = `/tmp/filedrop-test-${crypto.randomUUID()}-2.txt`;
|
||||
await writeFile(firstPath, 'hello');
|
||||
await writeFile(secondPath, 'world');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user