first commit

This commit is contained in:
Bastian Wagner
2026-07-31 21:02:47 +02:00
commit 6bea4f766a
512 changed files with 64459 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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);
});
});