File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -521,7 +521,9 @@ export class ExecutionDump implements IExecutionDump {
521521 *
522522 * @returns Serializable version of the execution dump
523523 */
524- async toSerializableFormat ( options ?: { inlineScreenshots ?: boolean } ) : Promise < IExecutionDump > {
524+ async toSerializableFormat ( options ?: {
525+ inlineScreenshots ?: boolean ;
526+ } ) : Promise < IExecutionDump > {
525527 const inlineScreenshots = options ?. inlineScreenshots ?? false ;
526528
527529 // Deep clone the data using JSON serialization with custom replacer
@@ -877,7 +879,9 @@ export class GroupedActionDump implements IGroupedActionDump {
877879 // Serialize executions with inline base64 screenshots
878880 const serializedExecutions : any [ ] = [ ] ;
879881 for ( const execution of this . executions ) {
880- const serialized = await execution . toSerializableFormat ( { inlineScreenshots : true } ) ;
882+ const serialized = await execution . toSerializableFormat ( {
883+ inlineScreenshots : true ,
884+ } ) ;
881885 serializedExecutions . push ( serialized ) ;
882886 }
883887
You can’t perform that action at this time.
0 commit comments