mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 12:26:47 +01:00
11 lines
378 B
TypeScript
11 lines
378 B
TypeScript
|
import { PartnerResponseDto } from '@app/domain';
|
||
|
import request from 'supertest';
|
||
|
|
||
|
export const partnerApi = {
|
||
|
create: async (server: any, accessToken: string, id: string) => {
|
||
|
const { status, body } = await request(server).post(`/partner/${id}`).set('Authorization', `Bearer ${accessToken}`);
|
||
|
expect(status).toBe(201);
|
||
|
return body as PartnerResponseDto;
|
||
|
},
|
||
|
};
|