24 lines
705 B
TypeScript
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);
|
|
});
|
|
});
|