Files
teamwallet/myteamwallet_backend/test/admin/auth.e2e-spec.ts
Bastian Wagner 6bea4f766a first commit
2026-07-31 21:02:47 +02:00

24 lines
705 B
TypeScript

import * as request from 'supertest';
import { ADMIN_EMAIL, ADMIN_PASSWORD, APP_URL } from '../utils/constants';
describe('Auth admin (e2e)', () => {
const app = APP_URL;
it('Login: /api/v1/auth/admin/email/login (POST)', () => {
return request(app)
.post('/api/v1/auth/admin/email/login')
.send({ email: ADMIN_EMAIL, password: ADMIN_PASSWORD })
.expect(200)
.expect(({ body }) => {
expect(body.token).toBeDefined();
});
});
it('Login via user endpoint: /api/v1/auth/email/login (POST)', () => {
return request(app)
.post('/api/v1/auth/email/login')
.send({ email: ADMIN_EMAIL, password: ADMIN_PASSWORD })
.expect(422);
});
});