Skip to content

Commit

Permalink
Exclude ar from k6 load testing (#5070)
Browse files Browse the repository at this point in the history
Signed-off-by: Olga Bulat <obulat@gmail.com>
  • Loading branch information
obulat authored Oct 23, 2024
1 parent 2d356e9 commit fa775dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/js/k6/src/frontend/scenarios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ import { FRONTEND_URL, PROJECT_ID } from "./constants.js"
import type { Options, Scenario } from "k6/options"

const STATIC_PAGES = ["about", "sources", "privacy", "sensitive-content"]
const TEST_LOCALES = ["en", "ru", "es", "ar"]
// We have machine-generated Arabic locale locally for testing RTL rendering. However,
// there are no real translations for it yet, so we exclude `ar` here.
// Check the prod status for `ar` locale:
// https://translate.wordpress.org/locale/ar/default/meta/openverse/
const TEST_LOCALES = ["en", "ru", "es"]
const TEST_PARAMS = "license=by&extension=jpg,mp3&source=flickr,jamendo"

const localePrefix = (locale: string) => {
Expand Down

0 comments on commit fa775dd

Please sign in to comment.