mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
fix: correct indentation
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user