File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ add_library(Testing
27
27
Attachments/Attachment.swift
28
28
Events/Clock.swift
29
29
Events/Event.swift
30
+ Events/Recorder/Event.AdvancedConsoleOutputRecorder.swift
30
31
Events/Recorder/Event.ConsoleOutputRecorder.swift
31
32
Events/Recorder/Event.HumanReadableOutputRecorder.swift
32
33
Events/Recorder/Event.JUnitXMLRecorder.swift
Original file line number Diff line number Diff line change @@ -66,10 +66,7 @@ extension Event.AdvancedConsoleOutputRecorder {
66
66
/// Handle an event by processing it and generating appropriate output.
67
67
///
68
68
/// Currently this is a skeleton implementation that delegates to the
69
- /// standard ConsoleOutputRecorder. Future PRs will add:
70
- /// - PR #2: Hierarchical display logic
71
- /// - PR #3: Live progress bar functionality
72
- /// - PR #4: Enhanced symbol integration
69
+ /// standard ConsoleOutputRecorder.
73
70
///
74
71
/// - Parameters:
75
72
/// - event: The event to handle.
Original file line number Diff line number Diff line change 27
27
/// printLiveUpdatingLine("Processing... 100%")
28
28
/// ```
29
29
public func printLiveUpdatingLine( _ text: String ) {
30
- print ( " \r \u{001B} [2K \( text) " , terminator: " " )
30
+ print ( " \r \u{001B} [2K \( text) " , terminator: " " )
31
31
}
You can’t perform that action at this time.
0 commit comments