Skip to content

Commit

Permalink
Fix E2E browser CI flakiness by reducing example number of browser
Browse files Browse the repository at this point in the history
It seems like on MacOS running 3 browsers is way too much and it
regularly fails.

Given that the failure is due to threshold being blown over as the CI
just can't load pages fast enough, I see no point for this to keep being
flaky.

The example is about multiple scenarios not about multiple browsers in
scenarios as well.
  • Loading branch information
mstoykov committed Feb 10, 2025
1 parent b5db574 commit e692e02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/browser/multiple-scenario.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const options = {
messages: {
executor: 'constant-vus',
exec: 'messages',
vus: 2,
vus: 1,
duration: '2s',
options: {
browser: {
Expand All @@ -16,8 +16,8 @@ export const options = {
news: {
executor: 'per-vu-iterations',
exec: 'news',
vus: 2,
iterations: 4,
vus: 1,
iterations: 2,
maxDuration: '5s',
options: {
browser: {
Expand Down

0 comments on commit e692e02

Please sign in to comment.