Files
iofficeai--aionui/tests/unit/renderer/teamRuntimeUiRemoved.test.ts
2026-07-13 13:20:22 +08:00

9 lines
320 B
TypeScript

import { describe, expect, it } from 'vitest';
import zhCNTeamLocale from '@/renderer/services/i18n/locales/zh-CN/team.json';
describe('team runtime UI removal', () => {
it('does not keep team runtime notice translations in the renderer locale', () => {
expect('runtime' in zhCNTeamLocale).toBe(false);
});
});