mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
10 lines
378 B
TypeScript
10 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;
|
|
},
|
|
};
|