Fix jwt-token

This commit is contained in:
2025-09-16 21:39:05 +02:00
parent 33ed83f419
commit eca16021ac

View File

@@ -200,7 +200,7 @@ describe('Auth Routes', () => {
.send({
username: 'newuser',
email: 'new@example.com',
password: 'password123'
password: 'Password123'
});
expect(response.status).to.equal(403);
@@ -225,7 +225,7 @@ describe('Auth Routes', () => {
.send({
username: 'existing',
email: 'new@example.com',
password: 'password123'
password: 'Password123'
});
expect(response.status).to.equal(400);
@@ -312,7 +312,7 @@ describe('Auth Routes', () => {
.send({
username: 'newuser',
email: 'new@example.com',
password: 'password123'
password: 'Password123'
});
expect(response.status).to.equal(403);