Stabilize unit and UI tests for SportsTime

This commit is contained in:
treyt
2026-02-18 13:00:15 -06:00
parent 1488be7c1f
commit 20ac1a7e59
49 changed files with 432 additions and 325 deletions

View File

@@ -7,6 +7,8 @@ import Foundation
import CoreLocation
import MapKit
extension MKPolyline: @unchecked Sendable {}
actor LocationService {
static let shared = LocationService()
@@ -158,7 +160,7 @@ actor LocationService {
// MARK: - Route Info
struct RouteInfo {
struct RouteInfo: @unchecked Sendable {
let distance: CLLocationDistance // meters
let expectedTravelTime: TimeInterval // seconds
let polyline: MKPolyline?