mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 19:30:30 +00:00
13 lines
420 B
TypeScript
13 lines
420 B
TypeScript
import * as request from 'supertest';
|
|
import { app, AuthorizationHeader, orgainzationId } from './init-app-test';
|
|
|
|
describe('Attachments (e2e)', () => {
|
|
it('/attachments/:id/presigned-url (GET)', () => {
|
|
return request(app.getHttpServer())
|
|
.get('/attachments/test-id/presigned-url')
|
|
.set('organization-id', orgainzationId)
|
|
.set('Authorization', AuthorizationHeader)
|
|
.expect(200);
|
|
});
|
|
});
|