Skip to content

Commit 7d11ac3

Browse files
authored
Fix broken localization tests on Firefox (#41324)
Closes #41323 Signed-off-by: Jon Koops <[email protected]>
1 parent 04940d1 commit 7d11ac3

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

js/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,8 @@ dist
1212

1313
# NPM
1414
node_modules
15+
16+
# Playwright
17+
test-results
18+
playwright-report
19+
playwright/.cache

js/apps/account-ui/.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
/test-results/
2-
/playwright-report/
3-
/playwright/.cache/
41
.auth/
52
lib/

js/apps/admin-ui/test/realm-settings/localization.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ test.describe("Go to localization tab", () => {
5151
test("Realm Overrides - Add and delete bundle", async ({ page }) => {
5252
await addBundle(page, "key", "123");
5353
await clickCreateButton(page);
54-
await addBundle(page, "value", "abc");
54+
await addBundle(page, "foo", "abc");
5555
await clickCreateButton(page);
5656

5757
await assertNotificationMessage(
@@ -87,7 +87,7 @@ test.describe("Go to localization tab", () => {
8787
const key = "edit";
8888
await addBundle(page, key, "123");
8989
await clickCreateButton(page);
90-
await addBundle(page, "value", "abc");
90+
await addBundle(page, "foo", "abc");
9191
await clickCreateButton(page);
9292

9393
await assertNotificationMessage(

0 commit comments

Comments
 (0)