Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created June 7, 2017 08:29
Show Gist options
  • Save ppcano/ed545a322c1ed4b6ee61f0fe34ac6694 to your computer and use it in GitHub Desktop.
Save ppcano/ed545a322c1ed4b6ee61f0fe34ac6694 to your computer and use it in GitHub Desktop.
// this can also be imported,
// it can help to organize your whole test suite
var settings = {
maxUsers: 20,
usersFlow1: 20,
usersFlow2: 30,
usersFlow3: 50
}
import http from "k6/http";
import {x} from "k6";
export let options = {
vus: settings.maxUsers,
duration: "10s"
};
export default function() {
if (x(settings.usersFlow1)) {
// define the user flow for theses users
//
//You may want to use groups or not
//Note: groups are not scripts, groups can be nested and works as labels to easily visualize/filtering your test results
} else if (x(settings.usersFlow2)) {
// define the user flow for these users
} else if (x(settings.usersFlow3)) {
// define the user flow for these users
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment