Files
weirsoe-party-protocol/frontend/tests/lobby-loader.parity.test.ts
DEV-bot ed72f9a824
All checks were successful
CI / test-and-quality (push) Successful in 3m21s
CI / test-and-quality (pull_request) Successful in 3m2s
feat(i18n): share frontend lobby loader and add da/en parity check (#257)
2026-03-02 02:15:36 +00:00

11 lines
406 B
TypeScript

import { describe, expect, it } from 'vitest';
import { collectLocaleParityIssues, LOBBY_I18N_CATALOG, SUPPORTED_LOCALES } from '../shared/i18n/lobby-loader';
describe('shared lobby i18n loader parity', () => {
it('keeps da/en translation parity in shared keyspace', () => {
const issues = collectLocaleParityIssues(LOBBY_I18N_CATALOG, SUPPORTED_LOCALES);
expect(issues).toEqual([]);
});
});