From 3b4b1109cee78c9628660e0e07c990b332ca6b8f Mon Sep 17 00:00:00 2001 From: Misaka_Company Date: Fri, 17 Apr 2026 13:54:23 +0800 Subject: [PATCH] test: add recordVideo and videoDir fields to TestErpConfig fixture Align the test fixture type with the updated ErpConfig source type that now includes optional video recording fields. Co-Authored-By: Claude Opus 4.6 --- tests/fixtures/types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/fixtures/types.ts b/tests/fixtures/types.ts index 5ccbac5..36854fe 100644 --- a/tests/fixtures/types.ts +++ b/tests/fixtures/types.ts @@ -114,6 +114,10 @@ export interface TestErpConfig { password: string /** Headless browser mode (optional) */ headless?: boolean + /** Whether to record video during automation (optional) */ + recordVideo?: boolean + /** Directory to save recorded videos (optional) */ + videoDir?: string } /**