Load tests

This commit is contained in:
2026-04-23 22:01:45 +03:00
parent 341f40a02a
commit dad178bd0d
3 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
counter = 0
request = function()
counter = counter + 1
local body = string.format('{"email":"load%d@test.com","password":"pass"}', counter)
return wrk.format("POST", "/v1/register", {["Content-Type"]="application/json"}, body)
end