Skip to content

Commit 53cb660

Browse files
committed
fix(tests): update tests after AI Director and media restoration changes
1 parent da0600b commit 53cb660

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/domains/ai-director/tauri/__tests__/ai-director-commands.test.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ describe("AI Director Tauri Commands", () => {
6363
enable_scene_detection: true,
6464
enable_video_analysis: true,
6565
enable_object_detection: true,
66-
enable_face_recognition: true,
66+
enable_face_detection: true,
6767
enable_transcription: false,
6868
}
6969

@@ -152,7 +152,7 @@ describe("AI Director Tauri Commands", () => {
152152
enable_scene_detection: false,
153153
enable_video_analysis: true,
154154
enable_object_detection: false,
155-
enable_face_recognition: false,
155+
enable_face_detection: false,
156156
enable_transcription: false,
157157
}
158158

@@ -247,7 +247,7 @@ describe("AI Director Tauri Commands", () => {
247247
enable_scene_detection: true,
248248
enable_video_analysis: false,
249249
enable_object_detection: false,
250-
enable_face_recognition: false,
250+
enable_face_detection: false,
251251
enable_transcription: false,
252252
}
253253

@@ -266,7 +266,7 @@ describe("AI Director Tauri Commands", () => {
266266
enable_scene_detection: true,
267267
enable_video_analysis: true,
268268
enable_object_detection: true,
269-
enable_face_recognition: false,
269+
enable_face_detection: false,
270270
enable_transcription: false,
271271
}
272272

@@ -284,7 +284,7 @@ describe("AI Director Tauri Commands", () => {
284284
enable_scene_detection: true,
285285
enable_video_analysis: true,
286286
enable_object_detection: true,
287-
enable_face_recognition: true,
287+
enable_face_detection: true,
288288
enable_transcription: true,
289289
}
290290

@@ -304,7 +304,7 @@ describe("AI Director Tauri Commands", () => {
304304
enable_scene_detection: true,
305305
enable_video_analysis: true,
306306
enable_object_detection: true,
307-
enable_face_recognition: true,
307+
enable_face_detection: true,
308308
enable_transcription: false,
309309
}
310310

@@ -332,7 +332,7 @@ describe("AI Director Tauri Commands", () => {
332332
enable_scene_detection: true,
333333
enable_video_analysis: true,
334334
enable_object_detection: true,
335-
enable_face_recognition: true,
335+
enable_face_detection: true,
336336
enable_transcription: true,
337337
max_parallel_files: 100, // Very low
338338
}
@@ -359,7 +359,7 @@ describe("AI Director Tauri Commands", () => {
359359
enable_scene_detection: false,
360360
enable_video_analysis: false,
361361
enable_object_detection: false,
362-
enable_face_recognition: false,
362+
enable_face_detection: false,
363363
enable_transcription: false,
364364
}
365365

src/domains/media-management/services/__tests__/media-restoration-service.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
import { beforeEach, describe, expect, it, vi } from "vitest"
8-
import { MediaType } from "@/domains/video-editing/types/media"
8+
import { MediaType } from "@/domains/media-management"
99
import type { SavedMediaFile, SavedMusicFile } from "../../types/saved-media"
1010
import {
1111
convertFromSavedMediaFile,

0 commit comments

Comments
 (0)