Hi all,
I noticed when using Rampup() during () the defined users only do one request and then go to done?
Is this normal behavior?
I’m struggling with setting up a simple test that runs up to 30 users and holds it for 5 minutes but so far no luck.
`
setUp(
rest.inject(
rampUsers(30) during (30 seconds).max(5 minutes)
)
).assertions(
global.responseTime.max.lt(5000),
forAll.failedRequests.percent.lte(5)
).protocols(httpConf)
`
Kind regards and thanks in advance.