feat: added tests

This commit is contained in:
ITQ
2025-01-29 20:24:05 +03:00
parent 82a5a50c4b
commit 9d3fae947b
38 changed files with 4743 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
test_name: Базовая регистрация и аутентификация
stages:
- name: "Регистрация нового бизнес аккаунта"
request:
url: "{BASE_URL}/business/auth/sign-up"
method: POST
json:
name: "Рекламное агенство Малинки-Вечеринки"
email: raspberryprod@mail.com
password: SuperStrongPassword2000!
response:
status_code: 200
- name: "Аутентификация"
request:
url: "{BASE_URL}/business/auth/sign-in"
method: POST
json:
email: raspberryprod@mail.com
password: SuperStrongPassword2000!
response:
status_code: 200