Created
June 7, 2017 08:29
-
-
Save ppcano/ed545a322c1ed4b6ee61f0fe34ac6694 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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