mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
Add E2E tests for internationalization across multiple pages
- Implemented navigation.spec.ts to test language switching and translation of navigation elements. - Created sessions-page.spec.ts to verify translations on the sessions page, including headers, status badges, and date formatting. - Developed settings-page.spec.ts to ensure settings page content is translated and persists across sessions. - Added skills-page.spec.ts to validate translations for skill categories, action buttons, and empty states.
This commit is contained in:
@@ -119,3 +119,50 @@ export type {
|
||||
UseUpdateMemoryReturn,
|
||||
UseDeleteMemoryReturn,
|
||||
} from './useMemory';
|
||||
|
||||
// ========== MCP Servers ==========
|
||||
export {
|
||||
useMcpServers,
|
||||
useUpdateMcpServer,
|
||||
useCreateMcpServer,
|
||||
useDeleteMcpServer,
|
||||
useToggleMcpServer,
|
||||
useMcpServerMutations,
|
||||
mcpServersKeys,
|
||||
} from './useMcpServers';
|
||||
export type {
|
||||
UseMcpServersOptions,
|
||||
UseMcpServersReturn,
|
||||
UseUpdateMcpServerReturn,
|
||||
UseCreateMcpServerReturn,
|
||||
UseDeleteMcpServerReturn,
|
||||
UseToggleMcpServerReturn,
|
||||
} from './useMcpServers';
|
||||
|
||||
// ========== CLI ==========
|
||||
export {
|
||||
useCliEndpoints,
|
||||
useToggleCliEndpoint,
|
||||
cliEndpointsKeys,
|
||||
useCliInstallations,
|
||||
useInstallCliTool,
|
||||
useUninstallCliTool,
|
||||
useUpgradeCliTool,
|
||||
cliInstallationsKeys,
|
||||
useHooks,
|
||||
useToggleHook,
|
||||
hooksKeys,
|
||||
useRules,
|
||||
useToggleRule,
|
||||
rulesKeys,
|
||||
} from './useCli';
|
||||
export type {
|
||||
UseCliEndpointsOptions,
|
||||
UseCliEndpointsReturn,
|
||||
UseCliInstallationsOptions,
|
||||
UseCliInstallationsReturn,
|
||||
UseHooksOptions,
|
||||
UseHooksReturn,
|
||||
UseRulesOptions,
|
||||
UseRulesReturn,
|
||||
} from './useCli';
|
||||
|
||||
Reference in New Issue
Block a user