Skip to content

Commit

Permalink
fix: switching back to shared interations to 1 cycle completes
Browse files Browse the repository at this point in the history
Signed-off-by: David Poltorak <[email protected]>
  • Loading branch information
davepoltorak committed Sep 29, 2023
1 parent 4c43d06 commit 9737693
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { Scenario, Threshold } from "k6/options";
export const defaultScenarios: { [name: string]: Scenario } = {
smoke: {
// a simple test to ensure performance tests work and requests don't fail
executor: "constant-vus",
vus: 3,
duration: "10s",
executor: "shared-iterations",
vus: 1,
iterations: 1,
tags: { scenario_label: __ENV.SCENARIO_LABEL || "defaultScenarioLabel" }, // add label for filtering in observability platform
},
};
Expand Down

0 comments on commit 9737693

Please sign in to comment.