Files
ca-lose/frontend/tests/test.local.js
2026-05-18 18:11:46 +02:00

14 lines
334 B
JavaScript

import http from "k6/http";
import { sleep } from "k6";
export const options = {
vus: 100, // amount of users
duration: "60s", // duration of the test
};
export default function () {
http.get("http://localhost:8004/default/confirm-user?username=TheisGaedigk");
http.get("http://localhost:8004/default/users");
sleep(1);
}