Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public struct DefaultOptions: Codable {
public var testRepetitionMode: String?
public var maximumTestRepetitions: Int?
public var maximumTestExecutionTimeAllowance: Int?
public var targetForVariableExpansion: Target?
}

// MARK: - CommandLineArgumentEntry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class TestPlanHelper {
static func writeTestPlan(_ testPlan: TestPlanModel, filePath: String) throws {
Logger.message("Writing updated test plan to file: \(filePath)")
let encoder = JSONEncoder()
encoder.outputFormatting = .prettyPrinted
encoder.outputFormatting = [.prettyPrinted, .sortedKeys]
let updatedData = try encoder.encode(testPlan)

let url = URL(fileURLWithPath: filePath)
Expand Down