Skip to content
Snippets Groups Projects
Commit 984eb1b0 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Include a regression test for #4476

parent f270b36f
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ describe('Localization', () => {
await driver.quit();
});
test('Localization', async () => {
test('Switching languages', async () => {
await loadUri(uri);
await clickXpath('//button[@title="Try It"]');
......@@ -52,4 +52,15 @@ describe('Localization', () => {
const logs = await getLogs();
await expect(logs).toEqual([]);
});
// Regression test for #4476, blocks in wrong language when loaded with locale
test('Loading with locale shows correct blocks', async () => {
await loadUri(`${uri}?locale=de`);
await clickXpath('//button[@title="Ausprobieren!"]'); // "Try It"
await clickText('Fühlen'); // Sensing category in German
await new Promise(resolve => setTimeout(resolve, 1000)); // wait for blocks to scroll
await clickText('Antwort'); // Find the "answer" block in German
const logs = await getLogs();
await expect(logs).toEqual([]);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment