fix: correct indentation

This commit is contained in:
som14062005
2025-12-17 19:21:34 +05:30
parent 91fc8a1d35
commit 59edda49c9

View File

@@ -27,13 +27,12 @@ describe('AudioController (e2e)', () => {
});
it('should handle multiple concurrent requests', async () => {
const requests = Array.from({ length: 3 }, () =>
request(app.getHttpServer()).post('/audio/transcode').expect(201),
);
await Promise.all(requests);
});
const requests = Array.from({ length: 3 }, () =>
request(app.getHttpServer()).post('/audio/transcode').expect(201),
);
await Promise.all(requests);
});
it('should reject GET requests', () => {
return request(app.getHttpServer())