chore(ios): wire TestSupport test-dependency into SessionCore/APIClient manifests (W1 coordination point)

This commit is contained in:
Yaojia Wang
2026-07-04 21:21:09 +02:00
parent cbaa08daba
commit 2ab93c9682
2 changed files with 16 additions and 2 deletions

View File

@@ -12,13 +12,20 @@ let package = Package(
],
dependencies: [
.package(path: "../WireProtocol"),
.package(path: "../TestSupport"),
],
targets: [
.target(
name: "APIClient",
dependencies: [.product(name: "WireProtocol", package: "WireProtocol")]
),
.testTarget(name: "APIClientTests", dependencies: ["APIClient"]),
.testTarget(
name: "APIClientTests",
dependencies: [
"APIClient",
.product(name: "TestSupport", package: "TestSupport"),
]
),
],
swiftLanguageModes: [.v6]
)