Rename files

This commit is contained in:
Fedor Indutny
2025-10-16 17:33:01 -07:00
parent 3387cf6a77
commit 44076ece79
2411 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import createDebug from 'debug';
import type { Locator } from 'playwright/test';
import { expect } from 'playwright/test';
import { writeFile } from 'node:fs/promises';
import * as durations from '../../util/durations/index.std.js';
import type { App } from '../playwright.node.js';
import { Bootstrap } from '../bootstrap.node.js';
export const debug = createDebug('mock:test:language');
describe('language', function (this: Mocha.Suite) {
this.timeout(durations.MINUTE);
let bootstrap: Bootstrap;
let app: App;
beforeEach(async () => {
bootstrap = new Bootstrap();
await bootstrap.init();
// Note: We need to use the `localeOverride` config directly because you
// cannot restart an electron app in a puppeteer test
await writeFile(
bootstrap.ephemeralConfigPath,
JSON.stringify({
localeOverride: 'ar',
})
);
app = await bootstrap.link();
});
afterEach(async function (this: Mocha.Context) {
if (!bootstrap) {
return;
}
await bootstrap.maybeSaveLogs(this.currentTest, app);
await app.close();
await bootstrap.teardown();
});
it('renders correctly with a locale override', async () => {
const window = await app.getWindow();
debug('must have correct html attributes');
await expect(window.locator(':root')).toHaveAttribute('lang', 'ar');
await expect(window.locator(':root')).toHaveAttribute('dir', 'rtl');
function getLeftBound(locator: Locator): Promise<number> {
return locator.evaluate(element => {
return element.getBoundingClientRect().left;
});
}
debug('must be rendered in correct order');
const navTabsLeft = await getLeftBound(window.locator('.NavTabs'));
const leftPaneLeft = await getLeftBound(window.locator('#LeftPane'));
const emptyInboxLeft = await getLeftBound(
window.locator('.Inbox__conversation-stack')
);
expect(navTabsLeft).toBeGreaterThan(leftPaneLeft);
expect(leftPaneLeft).toBeGreaterThan(emptyInboxLeft);
});
});