Просмотр исходного кода

fix(server): 更新文件集成测试中的注释

- 更新files.integration.test.ts中的注释
- 将fileRoutesMt注释更新为fileRoutes

🤖 Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
yourname 1 месяц назад
Родитель
Сommit
88258f0907
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/server/tests/integration/files.integration.test.ts

+ 1 - 1
packages/server/tests/integration/files.integration.test.ts

@@ -15,7 +15,7 @@ vi.mock('@d8d/file-module', async (importOriginal) => {
   const actual = await importOriginal<typeof import('@d8d/file-module')>();
   return {
     ...actual,
-    fileRoutes: actual.fileRoutes, // 确保导出fileRoutesMt
+    fileRoutes: actual.fileRoutes, // 确保导出fileRoutes
     MinioService: vi.fn(() => ({
       bucketName: 'd8dai',
       ensureBucketExists: vi.fn().mockResolvedValue(true),