test: fix Bruno auth test sequence and add registration data

Correct the sequence numbers for logout and refresh token tests.
Add sample registration data to the Register User test.
This commit is contained in:
2026-02-20 13:26:51 -05:00
parent 4988eb8b27
commit 1095609302
3 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
info: info:
name: Logout User name: Logout User
type: http type: http
seq: 1 seq: 3
http: http:
method: POST method: POST
url: '{{base_url}}/api/auth/logout' url: '{{base_url}}/api/auth/logout'
+1 -1
View File
@@ -1,7 +1,7 @@
info: info:
name: Refresh Access Token name: Refresh Access Token
type: http type: http
seq: 1 seq: 4
http: http:
method: POST method: POST
+8 -1
View File
@@ -8,7 +8,14 @@ http:
url: "{{base_url}}/api/auth/register" url: "{{base_url}}/api/auth/register"
body: body:
type: json type: json
data: "" data: |-
{
"username": "testuser",
"email": "testuser@example.com",
"password": "Test@Pass123!",
"first_name": "Test",
"last_name": "User"
}
auth: inherit auth: inherit
runtime: runtime: