We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37bb0ec commit b8665eaCopy full SHA for b8665ea
1 file changed
load-tests/smoke.js
@@ -3,8 +3,8 @@ import { check, sleep } from "k6";
3
4
export const options = {
5
stages: [
6
- { duration: "30s", target: 10 }, // ramp up
7
- { duration: "1m", target: 10 }, // hold
+ { duration: "30s", target: 3 }, // ramp up
+ { duration: "1m", target: 3 }, // hold
8
{ duration: "10s", target: 0 }, // ramp down
9
],
10
thresholds: {
@@ -47,6 +47,6 @@ export default function (data) {
47
);
48
check(create, { "create 201": (r) => r.status === 201 });
49
50
- sleep(1);
+ sleep(3);
51
}
52
0 commit comments