Hey there, I'm new to K6 and I've got a query about how tests are executed. Take this small test with a given configuration for example:
export const options = {
stages: [
{ target: 10, duration: '30s'}
]}
When I run the test with this configuration, at the bottom of the console I see this line
[======================================] 01/10 VUs.
Does this mean that k6 executes tests sequentially, waiting for one iteration to finish before starting the next one? I initially thought the tests would be running simultaneously.