Skip to content

Commit fa775dd

Browse files
authored
Exclude ar from k6 load testing (#5070)
Signed-off-by: Olga Bulat <obulat@gmail.com>
1 parent 2d356e9 commit fa775dd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/js/k6/src/frontend/scenarios.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ import { FRONTEND_URL, PROJECT_ID } from "./constants.js"
1111
import type { Options, Scenario } from "k6/options"
1212

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

1721
const localePrefix = (locale: string) => {

0 commit comments

Comments
 (0)