11 lines
406 B
TypeScript
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([]);
|
|
});
|
|
});
|