File tree Expand file tree Collapse file tree
Sources/TestConfigurator/xctestplanner/Core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ public struct DefaultOptions: Codable {
4040 public var testRepetitionMode : String ?
4141 public var maximumTestRepetitions : Int ?
4242 public var maximumTestExecutionTimeAllowance : Int ?
43+ public var targetForVariableExpansion : Target ?
4344}
4445
4546// MARK: - CommandLineArgumentEntry
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class TestPlanHelper {
2222 static func writeTestPlan( _ testPlan: TestPlanModel , filePath: String ) throws {
2323 Logger . message ( " Writing updated test plan to file: \( filePath) " )
2424 let encoder = JSONEncoder ( )
25- encoder. outputFormatting = . prettyPrinted
25+ encoder. outputFormatting = [ . prettyPrinted, . sortedKeys ]
2626 let updatedData = try encoder. encode ( testPlan)
2727
2828 let url = URL ( fileURLWithPath: filePath)
You can’t perform that action at this time.
0 commit comments